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, 2 insertions, 0 deletions
diff --git a/po/compile.py b/po/compile.py
index e1839e2e..178342a6 100755
--- a/po/compile.py
+++ b/po/compile.py
@@ -86,6 +86,8 @@ def parse_po(src):
86 msg_str = unquote(line) 86 msg_str = unquote(line)
87 if msg_id: 87 if msg_id:
88 messages.append((msg_id, msg_str, msg_index)) 88 messages.append((msg_id, msg_str, msg_index))
89 if is_multi and msg_id:
90 messages.append((msg_id, msg_str, msg_index))
89 # Apply plural indices to ids. 91 # Apply plural indices to ids.
90 pluralized = [] 92 pluralized = []
91 for msg_id, msg_str, msg_index in messages: 93 for msg_id, msg_str, msg_index in messages: