diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-22 10:21:58 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-22 10:21:58 +0000 |
| commit | 33e7910cdef6e84d575ad8bb50b5d580b9500472 (patch) | |
| tree | b1d099b514ff30124a6a10a53d5db82b69f549ab /lib/python | |
| parent | ae61cad19c3d66a8e15bc0096cff5742e7841f9d (diff) | |
| download | enigma2-33e7910cdef6e84d575ad8bb50b5d580b9500472.tar.gz enigma2-33e7910cdef6e84d575ad8bb50b5d580b9500472.zip | |
better display for linked nim-names
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/NimManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 51fd7913..2baf50b3 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -378,7 +378,7 @@ def InitNimManager(nimmgr): satNimList = nimmgr.getNimListOfType(nimmgr.nimType["DVB-S"], slot.slotid) satNimListNames = [] for x in satNimList: - satNimListNames.append(nimmgr.getNimName(x)) + satNimListNames.append(_("Slot ") + ("A", "B", "C", "D")[x] + ": " + nimmgr.getNimName(x)) nim.linkedTo = configElement(cname + "linkedTo", configSelection, 0, satNimListNames); #perhaps the instance of the slot is more useful? |
