aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Satconfig.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-03-13 14:57:54 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2010-03-13 15:00:13 +0100
commit9f8056cd2f459c5221e4af6e37b75bc671f14e8d (patch)
tree9eabfe0a4c03ee456b7753896e7aed747a9ed942 /lib/python/Screens/Satconfig.py
parent83c9fa8a8b23dd75ac7941955d4528d9b9b64cfe (diff)
downloadenigma2-9f8056cd2f459c5221e4af6e37b75bc671f14e8d.tar.gz
enigma2-9f8056cd2f459c5221e4af6e37b75bc671f14e8d.zip
fixes bug #343
change "nothing connected" to "not configured" to avoid confusion
Diffstat (limited to 'lib/python/Screens/Satconfig.py')
-rw-r--r--lib/python/Screens/Satconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py
index 647307d0..7ba3a134 100644
--- a/lib/python/Screens/Satconfig.py
+++ b/lib/python/Screens/Satconfig.py
@@ -58,7 +58,7 @@ class NimSetup(Screen, ConfigListScreen, ServiceStopScreen):
def createConfigMode(self):
if self.nim.isCompatible("DVB-S"):
- choices = { "nothing": _("nothing connected"),
+ choices = { "nothing": _("not configured"),
"simple": _("simple"),
"advanced": _("advanced")}
#if len(nimmanager.getNimListOfType(nimmanager.getNimType(self.slotid), exception = x)) > 0:
@@ -495,7 +495,7 @@ class NimSelection(Screen):
"satposdepends": _("second cable of motorized LNB") } [nimConfig.configMode.value]
text += " " + _("Tuner") + " " + ["A", "B", "C", "D"][int(nimConfig.connectedTo.value)]
elif nimConfig.configMode.value == "nothing":
- text = _("nothing connected")
+ text = _("not configured")
elif nimConfig.configMode.value == "simple":
if nimConfig.diseqcMode.value in ("single", "toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"):
text = {"single": _("Single"), "toneburst_a_b": _("Toneburst A/B"), "diseqc_a_b": _("DiSEqC A/B"), "diseqc_a_b_c_d": _("DiSEqC A/B/C/D")}[nimConfig.diseqcMode.value] + "\n"