2016-05-04 14:47:34 +02:00
|
|
|
#!/bin/python
|
|
|
|
|
|
|
|
import fnmatch
|
|
|
|
import os
|
2016-05-17 19:29:22 +02:00
|
|
|
import shutil
|
|
|
|
import subprocess
|
2016-05-21 18:57:48 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
line_nb = False
|
|
|
|
|
|
|
|
for arg in sys.argv[1:]:
|
2016-10-30 18:44:57 +01:00
|
|
|
if (arg == "--with-line-nb"):
|
|
|
|
print("Enabling line numbers in the context locations.")
|
|
|
|
line_nb = True
|
|
|
|
else:
|
|
|
|
os.sys.exit("Non supported argument '" + arg + "'. Aborting.")
|
2016-05-21 18:57:48 +02:00
|
|
|
|
2016-05-17 19:29:22 +02:00
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
if (not os.path.exists("editor")):
|
2016-10-30 18:44:57 +01:00
|
|
|
os.sys.exit("ERROR: This script should be started from the root of the git repo.")
|
2016-05-04 14:47:34 +02:00
|
|
|
|
2016-05-21 18:57:48 +02:00
|
|
|
|
2016-05-04 14:47:34 +02:00
|
|
|
matches = []
|
|
|
|
for root, dirnames, filenames in os.walk('.'):
|
2016-10-30 18:44:57 +01:00
|
|
|
for filename in fnmatch.filter(filenames, '*.cpp'):
|
|
|
|
if (filename.find("collada") != -1):
|
|
|
|
continue
|
|
|
|
matches.append(os.path.join(root, filename))
|
|
|
|
for filename in fnmatch.filter(filenames, '*.h'):
|
|
|
|
if (filename.find("collada") != -1):
|
|
|
|
continue
|
|
|
|
matches.append(os.path.join(root, filename))
|
2016-05-31 18:24:41 +02:00
|
|
|
matches.sort()
|
2016-05-04 15:31:47 +02:00
|
|
|
|
2016-05-04 14:47:34 +02:00
|
|
|
|
2016-05-21 18:32:03 +02:00
|
|
|
unique_str = []
|
2016-05-21 18:35:21 +02:00
|
|
|
unique_loc = {}
|
2016-05-21 20:37:13 +02:00
|
|
|
main_po = """
|
|
|
|
# LANGUAGE translation of the Godot Engine editor
|
2019-01-01 12:53:14 +01:00
|
|
|
# Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur.
|
|
|
|
# Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md)
|
2016-05-21 20:37:13 +02:00
|
|
|
# This file is distributed under the same license as the Godot source code.
|
2016-06-19 14:13:13 +02:00
|
|
|
#
|
2016-05-21 20:37:13 +02:00
|
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
|
|
#
|
|
|
|
#, fuzzy
|
|
|
|
msgid ""
|
|
|
|
msgstr ""
|
|
|
|
"Project-Id-Version: Godot Engine editor\\n"
|
|
|
|
"Content-Type: text/plain; charset=UTF-8\\n"
|
|
|
|
"Content-Transfer-Encoding: 8-bit\\n"
|
|
|
|
"""
|
2016-05-04 15:31:47 +02:00
|
|
|
|
2018-03-10 18:37:33 +01:00
|
|
|
def process_file(f, fname):
|
2016-10-30 18:44:57 +01:00
|
|
|
|
2018-08-23 14:43:41 +02:00
|
|
|
global main_po, unique_str, unique_loc
|
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
l = f.readline()
|
|
|
|
lc = 1
|
|
|
|
while (l):
|
|
|
|
|
2019-06-16 21:57:34 +02:00
|
|
|
patterns = ['RTR(\"', 'TTR(\"', 'TTRC(\"']
|
2016-10-30 18:44:57 +01:00
|
|
|
idx = 0
|
|
|
|
pos = 0
|
|
|
|
while (pos >= 0):
|
|
|
|
pos = l.find(patterns[idx], pos)
|
|
|
|
if (pos == -1):
|
|
|
|
if (idx < len(patterns) - 1):
|
|
|
|
idx += 1
|
|
|
|
pos = 0
|
|
|
|
continue
|
2019-06-16 21:57:34 +02:00
|
|
|
pos += len(patterns[idx])
|
2016-10-30 18:44:57 +01:00
|
|
|
|
|
|
|
msg = ""
|
|
|
|
while (pos < len(l) and (l[pos] != '"' or l[pos - 1] == '\\')):
|
|
|
|
msg += l[pos]
|
|
|
|
pos += 1
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
location = os.path.relpath(fname).replace('\\', '/')
|
2016-10-30 18:44:57 +01:00
|
|
|
if (line_nb):
|
|
|
|
location += ":" + str(lc)
|
|
|
|
|
|
|
|
if (not msg in unique_str):
|
|
|
|
main_po += "\n#: " + location + "\n"
|
|
|
|
main_po += 'msgid "' + msg + '"\n'
|
|
|
|
main_po += 'msgstr ""\n'
|
|
|
|
unique_str.append(msg)
|
|
|
|
unique_loc[msg] = [location]
|
|
|
|
elif (not location in unique_loc[msg]):
|
2018-09-13 03:38:39 +02:00
|
|
|
# Add additional location to previous occurrence too
|
2016-10-30 18:44:57 +01:00
|
|
|
msg_pos = main_po.find('\nmsgid "' + msg + '"')
|
|
|
|
if (msg_pos == -1):
|
|
|
|
print("Someone apparently thought writing Python was as easy as GDScript. Ping Akien.")
|
|
|
|
main_po = main_po[:msg_pos] + ' ' + location + main_po[msg_pos:]
|
|
|
|
unique_loc[msg].append(location)
|
|
|
|
|
|
|
|
l = f.readline()
|
|
|
|
lc += 1
|
|
|
|
|
2018-03-10 18:37:33 +01:00
|
|
|
print("Updating the editor.pot template...")
|
2016-05-04 14:47:34 +02:00
|
|
|
|
2018-03-10 18:37:33 +01:00
|
|
|
for fname in matches:
|
2019-06-16 21:57:34 +02:00
|
|
|
with open(fname, "r") as f:
|
2018-03-10 18:37:33 +01:00
|
|
|
process_file(f, fname)
|
2016-05-04 14:47:34 +02:00
|
|
|
|
2019-06-16 21:57:34 +02:00
|
|
|
with open("editor.pot", "w") as f:
|
2018-03-10 18:37:33 +01:00
|
|
|
f.write(main_po)
|
2016-05-17 19:29:22 +02:00
|
|
|
|
2016-05-21 20:37:13 +02:00
|
|
|
if (os.name == "posix"):
|
2016-10-30 18:44:57 +01:00
|
|
|
print("Wrapping template at 79 characters for compatibility with Weblate.")
|
2017-03-05 14:21:25 +01:00
|
|
|
os.system("msgmerge -w79 editor.pot editor.pot > editor.pot.wrap")
|
|
|
|
shutil.move("editor.pot.wrap", "editor.pot")
|
2016-05-21 20:37:13 +02:00
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
shutil.move("editor.pot", "editor/translations/editor.pot")
|
2016-05-17 19:29:22 +02:00
|
|
|
|
|
|
|
# TODO: Make that in a portable way, if we care; if not, kudos to Unix users
|
|
|
|
if (os.name == "posix"):
|
2019-06-29 11:31:42 +02:00
|
|
|
added = subprocess.check_output(r"git diff editor/translations/editor.pot | grep \+msgid | wc -l", shell=True)
|
|
|
|
removed = subprocess.check_output(r"git diff editor/translations/editor.pot | grep \\\-msgid | wc -l", shell=True)
|
2016-10-30 18:44:57 +01:00
|
|
|
print("\n# Template changes compared to the staged status:")
|
|
|
|
print("# Additions: %s msgids.\n# Deletions: %s msgids." % (int(added), int(removed)))
|