diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-29 00:50:33 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-29 00:50:33 +0000 |
| commit | cdeb634affac7c3083937825bbf2c89cd11e84f9 (patch) | |
| tree | ad2c763113bd75bfbb59637b08b31a8b8d0bc85e /lib/python/Screens | |
| parent | 9a0e273864aaa163b6ca0561e40928fd4ebedc08 (diff) | |
| download | enigma2-cdeb634affac7c3083937825bbf2c89cd11e84f9.tar.gz enigma2-cdeb634affac7c3083937825bbf2c89cd11e84f9.zip | |
a bit more/nicer fakes
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/About.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 36b90836..2e32e7d7 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -7,15 +7,16 @@ 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["tunerA"] = Label(" Tuner A: Alps BSBE1 (DVB-S)") + self["tunerB"] = Label(" Tuner B: Alps BSBE1 (DVB-S)") 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("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) + self["hddA"] = Label("Seagate 398 GByte (323 GByte free)") self["actions"] = ActionMap(["SetupActions"], { |
