aboutsummaryrefslogtreecommitdiff
path: root/po/xml2po.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 22:58:36 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 22:58:36 +0000
commitc1311444ea249a45d0eceefa15d77fce410a54da (patch)
tree9689ca7d8d2bf55cf5dde1d520ebe857c78dd315 /po/xml2po.py
parent142e649e1eb5f6e74f81a69bc7c7e093fb8716c9 (diff)
downloadenigma2-c1311444ea249a45d0eceefa15d77fce410a54da.tar.gz
enigma2-c1311444ea249a45d0eceefa15d77fce410a54da.zip
add some translations (translations in the wizard don't work in some places)
remove every moving pixmap from the startwizard (because of flickering)
Diffstat (limited to 'po/xml2po.py')
-rwxr-xr-xpo/xml2po.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/po/xml2po.py b/po/xml2po.py
index dac3a773..bf277987 100755
--- a/po/xml2po.py
+++ b/po/xml2po.py
@@ -14,6 +14,10 @@ class parseXML(ContentHandler):
attrlist[attrs.get('text', "")] = "foo"
if (attrs.has_key('title')):
attrlist[attrs.get('title', "")] = "foo"
+ if (attrs.has_key('value')):
+ attrlist[attrs.get('value', "")] = "foo"
+ if (attrs.has_key('caption')):
+ attrlist[attrs.get('caption', "")] = "foo"
parser = make_parser()