diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-18 05:26:40 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-18 05:26:40 +0000 |
| commit | 9de1e6638edc6d3432dff45f3a82fe2fc11deceb (patch) | |
| tree | d5697b0f993b119dae5b4f68d5c8ec64ee1da6ad /lib/python | |
| parent | 7725f7f3f752fce60f4a5dff7ef68e59557ad613 (diff) | |
| download | enigma2-9de1e6638edc6d3432dff45f3a82fe2fc11deceb.tar.gz enigma2-9de1e6638edc6d3432dff45f3a82fe2fc11deceb.zip | |
translation
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/NimManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index f6362545..55b644f6 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -214,9 +214,9 @@ class NimManager: def nimList(self): list = [ ] for slot in self.nimslots: - nimText = "Socket " + ("A", "B", "C", "D")[slot.slotid] + ": " + nimText = _("Socket ") + ("A", "B", "C", "D")[slot.slotid] + ": " if slot.nimType == -1: - nimText += "empty/unknown" + nimText += _("empty/unknown") else: nimText += slot.name + " (" nimText += ("DVB-S", "DVB-C", "DVB-T")[slot.nimType] + ")" |
