diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-29 13:39:49 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-29 13:39:49 +0300 |
commit | 6074a467110bfb4e40c3e659cc674d7bbaa82d5a (patch) | |
tree | be34e703e915affaad8997d0e6239c4151c63c4a /po/compile.py | |
parent | f3f8d328ef14b3e454b5612dfc4c02c71130f92d (diff) |
Lang: Recompiled language strings
Diffstat (limited to 'po/compile.py')
-rwxr-xr-x | po/compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/compile.py b/po/compile.py index 373fdcf9..fcd44789 100755 --- a/po/compile.py +++ b/po/compile.py | |||
@@ -104,7 +104,7 @@ if MODE == 'compile': | |||
104 | # Take missing strings from the base language. | 104 | # Take missing strings from the base language. |
105 | for msg_id in BASE_STRINGS: | 105 | for msg_id in BASE_STRINGS: |
106 | if msg_id not in have_ids and not msg_id[:-2] in PLURALS: | 106 | if msg_id not in have_ids and not msg_id[:-2] in PLURALS: |
107 | print(src, 'missing:', msg_id) | 107 | print('%10s' % src, 'missing:', msg_id) |
108 | lang.append((msg_id, BASE_STRINGS[msg_id])) | 108 | lang.append((msg_id, BASE_STRINGS[msg_id])) |
109 | for msg_id, msg_str in sorted(lang): | 109 | for msg_id, msg_str in sorted(lang): |
110 | compiled += compile_string(msg_id, msg_str) | 110 | compiled += compile_string(msg_id, msg_str) |