blob: 5796bacfc72f21d666a1c27eae2c503a29906214 (
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
|
#!/usr/bin/env python
import os, sys, re, xml.dom.minidom
def getText(nodelist):
text = ""
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
text += node.data
return text
for filename in os.listdir("Swift/Translations") :
m = re.match("swift_(.*)\.ts", filename)
if m :
language = m.group(1)
f = open("Swift/Translations/" + filename, "r")
document = xml.dom.minidom.parse(f)
f.close()
for message in document.getElementsByTagName("message") :
source = message.getElementsByTagName("source")[0]
sourceText = getText(source.childNodes)
sourcePlaceholders = set(re.findall("%\d+%?", sourceText))
translation = message.getElementsByTagName("translation")[0]
translationText = getText(translation.childNodes)
translationPlaceholders = set(re.findall("%\d+%?", translationText))
if translationPlaceholders != sourcePlaceholders :
print "[Error] " + filename + ": Placeholder mismatch in translation '" + sourceText + "'"
|