X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/4c9ba71c115ec9c83493a57596e0259bd4392bf5..7725f7f3f752fce60f4a5dff7ef68e59557ad613:/po/xml2po.py diff --git a/po/xml2po.py b/po/xml2po.py index 382f2d89..dac3a773 100755 --- a/po/xml2po.py +++ b/po/xml2po.py @@ -12,6 +12,8 @@ class parseXML(ContentHandler): def startElement(self, name, attrs): if (attrs.has_key('text')): attrlist[attrs.get('text', "")] = "foo" + if (attrs.has_key('title')): + attrlist[attrs.get('title', "")] = "foo" parser = make_parser()