diff options
Diffstat (limited to 'tools/translations/extract.py')
-rwxr-xr-x | tools/translations/extract.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/translations/extract.py b/tools/translations/extract.py index a441bcc480..97bb7494a7 100755 --- a/tools/translations/extract.py +++ b/tools/translations/extract.py @@ -40,6 +40,7 @@ main_po = """ # LANGUAGE translation of the Godot Engine editor # Copyright (C) 2016 Juan Linietsky, Ariel Manzur and the Godot community # This file is distributed under the same license as the Godot source code. +# # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # #, fuzzy @@ -106,7 +107,7 @@ f.write(main_po) f.close() if (os.name == "posix"): - os.system("msgmerge -w80 tools.pot tools.pot > tools.pot.wrap") + os.system("msgmerge -w79 tools.pot tools.pot > tools.pot.wrap") shutil.move("tools.pot.wrap", "tools.pot") shutil.move("tools.pot", "tools/translations/tools.pot") |