1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3 from Components.Sources.StaticText import StaticText
4 from Components.Harddisk import Harddisk
5 from Components.NimManager import nimmanager
6 from Components.About import about
8 from Tools.DreamboxHardware import getFPVersion
11 def __init__(self, session):
12 Screen.__init__(self, session)
14 self["EnigmaVersion"] = StaticText("Enigma: " + about.getEnigmaVersionString())
15 self["ImageVersion"] = StaticText("Image: " + about.getImageVersionString())
17 self["TunerHeader"] = StaticText(_("Detected NIMs:"))
19 fp_version = getFPVersion()
20 if fp_version is None:
23 fp_version = _("Frontprocessor version: %d") % fp_version
25 self["FPVersion"] = StaticText(fp_version)
27 nims = nimmanager.nimList()
28 for count in range(4):
30 self["Tuner" + str(count)] = StaticText(nims[count])
32 self["Tuner" + str(count)] = StaticText("")
34 self["HDDHeader"] = StaticText(_("Detected HDD:"))
37 self["hddA"] = StaticText(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
39 self["hddA"] = StaticText(_("none"))
41 self["actions"] = ActionMap(["SetupActions", "ColorActions"],
45 "green": self.showTranslationInfo
48 def showTranslationInfo(self):
49 self.session.open(TranslationInfo)
51 class TranslationInfo(Screen):
52 def __init__(self, session):
53 Screen.__init__(self, session)
54 # don't remove the string out of the _(), or it can't be "translated" anymore.
56 # TRANSLATORS: Add here whatever should be shown in the "translator" about screen, up to 6 lines (use \n for newline)
57 info = _("TRANSLATOR_INFO")
59 if info == "TRANSLATOR_INFO":
62 infolines = _("").split("\n")
72 self["TranslationInfo"] = StaticText(info)
74 translator_name = infomap.get("Language-Team", "none")
75 if translator_name == "none":
76 translator_name = infomap.get("Last-Translator", "")
78 self["TranslatorName"] = StaticText(translator_name)
80 self["actions"] = ActionMap(["SetupActions"],