blob: 6e5657335df14465af1c4a2d63fec9e9f5648941 (
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
|
#!/usr/bin/env python3
# Parses all the .po files and generates binary language strings to be loaded
# at runtime via embedded data.
import os
ESCAPES = {
'\\': '\\',
'"': '"',
'n': '\n',
'r': '\r',
't': '\t'
}
def unquote(string):
txt = string.strip()
if txt[0] != '"' or txt[-1] != '"':
raise Exception("invalid quoted string: " + string)
txt = txt[1:-1]
out = ''
is_escape = False
for c in txt:
if is_escape:
out += ESCAPES[c]
is_escape = False
continue
if c == '\\':
is_escape = True
else:
out += c
return out
messages = []
for src in os.listdir('.'):
if not src.endswith('.po'):
continue
msg_id, msg_str = None, None
for line in open(src, 'rt', encoding='utf-8').readlines():
line = line.strip()
if line.startswith('msgid'):
msg_id = unquote(line[6:])
elif line.startswith('msgstr'):
msg_str = unquote(line[7:])
messages.append((msg_id, msg_str))
# Make a binary blob with strings sorted by ID.
compiled = bytes()
for msg in sorted(messages):
compiled += msg[0].encode('utf-8') + bytes([0])
compiled += msg[1].encode('utf-8') + bytes([0])
#print(compiled)
open(f'../res/lang/{src[:-3]}.bin', 'wb').write(compiled)
|