summaryrefslogtreecommitdiff
path: root/py/makeqstrdata.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/makeqstrdata.py')
-rw-r--r--py/makeqstrdata.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py
index 719bc62fa..fd41e3b0e 100644
--- a/py/makeqstrdata.py
+++ b/py/makeqstrdata.py
@@ -66,7 +66,7 @@ def translate(translation_file, i18ns):
with open(translation_file, "rb") as f:
table = gettext.GNUTranslations(f)
- return [(x, table.gettext(x)) for x in i18ns]
+ return [(x, table.gettext(x.decode('string_escape'))) for x in i18ns]
def qstr_escape(qst):
def esc_char(m):
@@ -181,6 +181,8 @@ def print_qstr_data(qcfgs, qstrs, i18ns):
total_text_size = 0
for original, translation in i18ns:
+ # Add in carriage returns to work in terminals
+ translation = translation.replace("\n", "\\r\\n")
print("TRANSLATION(\"{}\", \"{}\")".format(original, translation))
total_text_size += len(translation)