diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-24 19:50:05 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-24 19:50:05 +0000 |
| commit | 5be5939082cfcef843e668bc1cbfb67f5451ef55 (patch) | |
| tree | 282db0ba8261820d1c02d6efc7d2dbc8a8e3a946 /lib/python/Components/NimManager.py | |
| parent | fea429e03ad502d4667041a245d3b492c49d55d7 (diff) | |
| download | enigma2-5be5939082cfcef843e668bc1cbfb67f5451ef55.tar.gz enigma2-5be5939082cfcef843e668bc1cbfb67f5451ef55.zip | |
- fix configMode for DVB-T and DVB-C
- add some information to the NimSelection to give a quick overview to
the user
Diffstat (limited to 'lib/python/Components/NimManager.py')
| -rw-r--r-- | lib/python/Components/NimManager.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 4adbdba4..72303af7 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -672,6 +672,12 @@ class NimManager: def getNimConfig(self, slotid): return config.Nims[slotid] + + def getSatName(self, pos): + for sat in self.satList: + if sat[0] == pos: + return sat[1] + return _("N/A") def getSatList(self): return self.satList |
