nutritionfactsorg / daily-dozen-android

Keep track of the foods that Dr. Greger recommends in his NYT's best-selling book, How Not to Die with this Android app
https://play.google.com/store/apps/details?id=org.nutritionfacts.dailydozen&hl=en
Other
274 stars 95 forks source link

Adds Slovak (sk). updates contributor lists. #217

Closed marc-medley closed 1 year ago

marc-medley commented 1 year ago

Adds Slovak (sk)

marc-medley commented 1 year ago

@slavick Here are some notes on why *_LOCAL was added to .gitignore:

The translation process generates the Android .xml files in a folder structure. There are also addition report files generated. This generation is a "mostly-automated" process with manual human checks at certain points.

One of the keys times for human check is the actual merge into the application code base. The generated files are not blindly copied in the application source. The merge tool is used so that the changes can be reviewed.

For iOS/iPhone, I've been adding *_LOCAL to the top level of the generated directory of files to be merged. The *_LOCAL convention has made the generated directories easier to spot, reduced errors and streamlined the process.

So, *_LOCAL was added to the Android .gitgnore. This addition makes the approach uniform across the 3 repositories: daily-dozen-android, daily-dozen-iphone and daily-dozen-localization.

Alternately, a double underscore *__LOCAL would be OK, if you prefer.