summaryrefslogtreecommitdiff
path: root/tools/translations/extract.py
blob: 0eaee58c640ae16d328f29590f578ebc399ebede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/python

import fnmatch
import os
import re
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.")

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))


unique_str=[]
main_po=""

print("Updating the tools.pot template...")

for fname in matches:

	f = open(fname,"rb")

	new_f = ""

	l = f.readline()
	lc=1
	while(l):

		pos = 0
		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

			if (not msg in unique_str):
				main_po+="\n#: "+os.path.relpath(fname).replace('\\','/')+":"+str(lc)+"\n"
				main_po+='msgid "'+msg+'"\n'
				main_po+='msgstr ""\n'
				unique_str.append(msg)

		l = f.readline()
		lc+=1

	f.close()


f = open("tools.pot","wb")
f.write(main_po)
f.close()

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)))