X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7725f7f3f752fce60f4a5dff7ef68e59557ad613..a60363079001c45eca98f1247064e1e80a69bb9c:/po/xml2po.py 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()