summaryrefslogtreecommitdiff
path: root/po/compile.py
diff options
context:
space:
mode:
Diffstat (limited to 'po/compile.py')
-rwxr-xr-xpo/compile.py2
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)