We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9573351 commit 5746657Copy full SHA for 5746657
py/maketranslationdata.py
@@ -90,7 +90,7 @@ def translate(translation_file, i18ns):
90
translations = []
91
for original in i18ns:
92
unescaped = original
93
- for s, replacement in C_ESCAPES:
+ for s, replacement in C_ESCAPES.items():
94
unescaped = unescaped.replace(replacement, s)
95
if original == "en_US":
96
translation = table.info()["language"]
0 commit comments