summaryrefslogtreecommitdiff
path: root/po/compile.py
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-07-24 07:13:07 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-07-24 07:13:07 +0300
commit4824970e2b07fc89d428095ce27113756adbe47a (patch)
tree26c52dbf5ad5c494362b5686c566790974da92b1 /po/compile.py
parenta427c1bfc677c74f6ceec0f64c36706db8ad13a3 (diff)
Updated translations
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: