blob: 2e267a07b232242b44d2909f19378db34df2758a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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.0b")
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:"))
hdd = Harddisk(0)
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"],
{
"cancel": self.close,
"ok": self.close,
})
|