aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-18 05:26:40 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-18 05:26:40 +0000
commit9de1e6638edc6d3432dff45f3a82fe2fc11deceb (patch)
treed5697b0f993b119dae5b4f68d5c8ec64ee1da6ad /lib/python
parent7725f7f3f752fce60f4a5dff7ef68e59557ad613 (diff)
downloadenigma2-9de1e6638edc6d3432dff45f3a82fe2fc11deceb.tar.gz
enigma2-9de1e6638edc6d3432dff45f3a82fe2fc11deceb.zip
translation
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/NimManager.py4
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] + ")"