-
Notifications
You must be signed in to change notification settings - Fork 1
/
xml2po.py
71 lines (59 loc) · 1.64 KB
/
xml2po.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from __future__ import print_function
import sys
import os
import six
import re
from xml.sax import make_parser
from xml.sax.handler import ContentHandler, property_lexical_handler
try:
from _xmlplus.sax.saxlib import LexicalHandler
no_comments = False
except ImportError:
class LexicalHandler:
pass
no_comments = True
class parseXML(ContentHandler, LexicalHandler):
def __init__(self, attrlist):
self.isPointsElement, self.isReboundsElement = 0, 0
self.attrlist = attrlist
self.last_comment = None
self.ishex = re.compile('#[0-9a-fA-F]+\Z')
def comment(self, comment):
if "TRANSLATORS:" in comment:
self.last_comment = comment
def startElement(self, name, attrs):
for x in ["text", "title", "value", "caption", "summary", "description"]:
try:
k = six.ensure_str(attrs[x])
if k.strip() != "" and not self.ishex.match(k):
attrlist.add((attrs[x], self.last_comment))
self.last_comment = None
except KeyError:
pass
parser = make_parser()
attrlist = set()
contentHandler = parseXML(attrlist)
parser.setContentHandler(contentHandler)
if not no_comments:
parser.setProperty(property_lexical_handler, contentHandler)
for arg in sys.argv[1:]:
if os.path.isdir(arg):
for file in os.listdir(arg):
if (file.endswith(".xml")):
parser.parse(os.path.join(arg, file))
else:
parser.parse(arg)
attrlist = list(attrlist)
attrlist.sort(key=lambda a: a[0])
for (k, c) in attrlist:
print()
print('#: ' + arg)
k.replace("\\n", "\"\n\"")
if c:
for l in c.split('\n'):
print("#. ", l)
print('msgid "' + six.ensure_str(k) + '"')
print('msgstr ""')
attrlist = set()