X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/142e649e1eb5f6e74f81a69bc7c7e093fb8716c9..c1311444ea249a45d0eceefa15d77fce410a54da:/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()