summaryrefslogtreecommitdiffstats
path: root/editor/translations/extract.py
diff options
context:
space:
mode:
Diffstat (limited to 'editor/translations/extract.py')
-rwxr-xr-xeditor/translations/extract.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/editor/translations/extract.py b/editor/translations/extract.py
index 42a078b3e3..5ca3d8c0ed 100755
--- a/editor/translations/extract.py
+++ b/editor/translations/extract.py
@@ -78,8 +78,6 @@ def _add_additional_location(msgctx, msg, location):
if msg_pos == -1:
print("Someone apparently thought writing Python was as easy as GDScript. Ping Akien.")
- # NOTE FOR MENTORS: When I tested on my computer (windows) I need the extra \n#: to make the locations print line by line.
- # but it worked before without \n# so I will leave it like before
main_po = main_po[:msg_pos] + " " + location + main_po[msg_pos:]
@@ -171,7 +169,7 @@ print("Updating the editor.pot template...")
for fname in matches:
# NOTE FOR MENTORS: When I tested on windows I need to add encoding="utf8" at the end to be able to open the file.
# maybe on Linux there's no need.
- with open(fname, "r") as f:
+ with open(fname, "r", encoding="utf8") as f:
process_file(f, fname)
with open("editor.pot", "w") as f: