Skip to content

Commit

Permalink
Missing keys will no longer be written to the properties files
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan committed Feb 28, 2018
1 parent cb21464 commit fb3bba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/syncLang.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ def __update_properties(self, main_property_file, other_property_files):
num_keys_missing = len(keys_missing)
num_keys_obsolete = len(keys_obsolete)

for missing_key in keys_missing:
# for missing_key in keys_missing:
# Missing keys are added with main translation by default.
keys[missing_key] = main_keys_dict[missing_key]
# keys[missing_key] = main_keys_dict[missing_key]

for obsolete_key in keys_obsolete:
del keys[obsolete_key]
Expand Down

0 comments on commit fb3bba0

Please sign in to comment.