fixes bug #343
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sat, 13 Mar 2010 13:57:54 +0000 (14:57 +0100)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Sat, 13 Mar 2010 14:00:13 +0000 (15:00 +0100)
change "nothing connected" to "not configured" to avoid confusion

lib/python/Screens/Satconfig.py

index 647307d09c3a91b83b18a9a3e1c4b760849f4ca5..7ba3a1344b6af53686aed20e49891321251ae81d 100644 (file)
@@ -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"