dont hide recording widget onShown.. use onLayoutFinish
[enigma2.git] / lib / python / Screens / About.py
index 542bee6a02199eff30b7a2c7181adb0ee1a2f532..5bd5f273ed6d53464f0d6330052028d401718002 100644 (file)
@@ -4,14 +4,15 @@ from Components.Label import Label
 from Components.Harddisk import Harddisk
 from Components.NimManager import nimmanager
 from Components.MenuList import MenuList
+from Components.About import about
 
 class About(Screen):
        def __init__(self, session):
                Screen.__init__(self, session)
                
-               self["text"] = Label("Enigma v2.0b")
+               self["text"] = Label("Enigma v" + about.getVersionString())
 
-               self["tuner"] = Label("Detected NIMs:")
+               self["tuner"] = Label(_("Detected NIMs:"))
                
                nims = nimmanager.nimList()
                count = 0
@@ -19,10 +20,12 @@ class About(Screen):
                        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, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free()))
-               #self["hddA"] = Label("Seagate 398 GByte (323 GByte free)")
+               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"], 
                        {