X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c46216a8e07d97647287aeba0281f226b1ba05e9..90d9f3e7624282749eb59b57d4996f5d1d06c6b1:/lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index de9d6936..2e267a07 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -2,21 +2,29 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.Label import Label from Components.Harddisk import Harddisk - +from Components.NimManager import nimmanager +from Components.MenuList import MenuList class About(Screen): def __init__(self, session): Screen.__init__(self, session) - self["text"] = Label("Enigma v2.0a") + self["text"] = Label("Enigma v2.0b") - self["tuner"] = Label("Detected NIMs:") - self["tunerA"] = Label(" Tuner A: Fujitsu QST (DVB-S)") - self["tunerB"] = Label(" Tuner B: Fujitsu QST (DVB-S)") + self["tuner"] = Label(_("Detected NIMs:")) + + nims = nimmanager.nimList() + count = 0 + for i in nims: + self["tuner" + str(count)] = Label(i[0]) + count += 1 - self["hdd"] = Label("Detected HDD:") + self["hdd"] = Label(_("Detected HDD:")) hdd = Harddisk(0) - self["hddA"] = Label("%s (%s)" % (hdd.model(), hdd.capacity())) + if hdd.model() != "": + self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free())) + else: + self["hddA"] = Label(_("none")) self["actions"] = ActionMap(["SetupActions"], {