2016-05-04 12:47:34 +00:00
|
|
|
#!/bin/python
|
|
|
|
|
|
|
|
import fnmatch
|
|
|
|
import os
|
|
|
|
import re
|
2016-05-17 17:29:22 +00:00
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
if (not os.path.exists("tools")):
|
|
|
|
os.sys.exit("ERROR: This script should be started from the root of the git repo.")
|
2016-05-04 12:47:34 +00:00
|
|
|
|
|
|
|
matches = []
|
|
|
|
for root, dirnames, filenames in os.walk('.'):
|
|
|
|
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-04 13:31:47 +00:00
|
|
|
|
2016-05-04 12:47:34 +00:00
|
|
|
|
|
|
|
unique_str=[]
|
|
|
|
main_po=""
|
2016-05-04 13:31:47 +00:00
|
|
|
|
2016-05-17 17:29:22 +00:00
|
|
|
print("Updating the tools.pot template...")
|
|
|
|
|
2016-05-04 12:47:34 +00:00
|
|
|
for fname in matches:
|
|
|
|
|
|
|
|
f = open(fname,"rb")
|
|
|
|
|
|
|
|
new_f = ""
|
|
|
|
|
|
|
|
l = f.readline()
|
|
|
|
lc=1
|
|
|
|
while(l):
|
2016-05-04 13:31:47 +00:00
|
|
|
|
|
|
|
pos = 0
|
2016-05-04 12:47:34 +00:00
|
|
|
while(pos>=0):
|
|
|
|
pos = l.find('TTR(\"',pos)
|
|
|
|
if (pos==-1):
|
|
|
|
break
|
|
|
|
pos+=5
|
|
|
|
|
|
|
|
msg=""
|
|
|
|
while (pos < len(l) and (l[pos]!='"' or l[pos-1]=='\\') ):
|
|
|
|
msg+=l[pos]
|
|
|
|
pos+=1
|
2016-05-04 13:31:47 +00:00
|
|
|
|
2016-05-04 12:47:34 +00:00
|
|
|
if (not msg in unique_str):
|
2016-05-17 18:09:08 +00:00
|
|
|
main_po+="\n#: "+os.path.relpath(fname).replace('\\','/')+":"+str(lc)+"\n"
|
2016-05-04 12:47:34 +00:00
|
|
|
main_po+='msgid "'+msg+'"\n'
|
|
|
|
main_po+='msgstr ""\n'
|
|
|
|
unique_str.append(msg)
|
|
|
|
|
|
|
|
l = f.readline()
|
|
|
|
lc+=1
|
|
|
|
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
2016-05-04 12:56:24 +00:00
|
|
|
f = open("tools.pot","wb")
|
2016-05-04 12:47:34 +00:00
|
|
|
f.write(main_po)
|
|
|
|
f.close()
|
2016-05-17 17:29:22 +00:00
|
|
|
|
|
|
|
shutil.move("tools.pot", "tools/translations/tools.pot")
|
|
|
|
|
|
|
|
# TODO: Make that in a portable way, if we care; if not, kudos to Unix users
|
|
|
|
if (os.name == "posix"):
|
|
|
|
added = subprocess.check_output("git diff tools/translations/tools.pot | grep \+msgid | wc -l", shell=True)
|
|
|
|
removed = subprocess.check_output("git diff tools/translations/tools.pot | grep \\\-msgid | wc -l", shell=True)
|
|
|
|
print("Template changes compared to the staged status:")
|
|
|
|
print(" Additions: %s msgids.\n Deletions: %s msgids." % (int(added), int(removed)))
|