From: Felix Domke Date: Fri, 9 Nov 2007 01:13:19 +0000 (+0000) Subject: preliminary translator about screen - can be displayed by pressing 'green' in about... X-Git-Tag: 2.6.0~1749 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/0af48c266741db09f550dd513b5220b188dbb17f?ds=sidebyside preliminary translator about screen - can be displayed by pressing 'green' in about screen --- diff --git a/data/skin_default.xml b/data/skin_default.xml index bdc64a38..088bf05a 100644 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -14,6 +14,12 @@ + + + + + + diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 03fbd106..8db58e73 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -39,6 +39,45 @@ class About(Screen): else: self["hddA"] = StaticText(_("none")) + self["actions"] = ActionMap(["SetupActions", "ColorActions"], + { + "cancel": self.close, + "ok": self.close, + "green": self.showTranslationInfo + }) + + def showTranslationInfo(self): + self.session.open(TranslationInfo) + +class TranslationInfo(Screen): + def __init__(self, session): + Screen.__init__(self, session) + # don't remove the string out of the _(), or it can't be "translated" anymore. + + # TRANSLATORS: Add here whatever should be shown in the "translator" about screen, up to 6 lines (use \n for newline) + info = _("TRANSLATOR_INFO") + + if info == "TRANSLATOR_INFO": + info = "(N/A)" + + infolines = _("").split("\n") + infomap = {} + for x in infolines: + l = x.split(': ') + if len(l) != 2: + continue + (type, value) = l + infomap[type] = value + print infomap + + self["TranslationInfo"] = StaticText(info) + + translator_name = infomap.get("Language-Team", "none") + if translator_name == "none": + translator_name = infomap.get("Last-Translator", "") + + self["TranslatorName"] = StaticText(translator_name) + self["actions"] = ActionMap(["SetupActions"], { "cancel": self.close,