summaryrefslogtreecommitdiffstats
blob: 8dcf4143dc7ec750bf11a06c7d3dfa63a0912468 (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
#!/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)
    finished = True
    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]
      if "type" in translation.attributes.keys() and translation.attributes["type"]. value == "unfinished" :
        finished = False
      translationText = getText(translation.childNodes)
      translationPlaceholders = set(re.findall("%\d+%?", translationText))
      if translationPlaceholders != sourcePlaceholders :
        print "[Error] " + filename + ": Placeholder mismatch in translation '" + sourceText + "'"
    if not finished :
        print "[Warning] " + filename + ": Unfinished"