About.py : remove translator info
authorChang.H.S <jhs@dev3>
Thu, 26 Jan 2012 02:44:18 +0000 (11:44 +0900)
committerChang.H.S <jhs@dev3>
Thu, 26 Jan 2012 02:45:02 +0000 (11:45 +0900)
lib/python/Screens/About.py

index d0c54f6..a274010 100644 (file)
@@ -43,43 +43,4 @@ class About(Screen):
                        {
                                "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,
-                               "ok": self.close,
                        })