diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2005-12-15 14:12:06 +0000 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2005-12-15 14:12:06 +0000 |
| commit | 00cd844ebd702ecd465acd16834d6459b8caef2d (patch) | |
| tree | 15bf27dd9aeca98e3aedf4528ccddeb4dc2b0bfc | |
| parent | 4230d1eb60d2c85cc1af57f0b19f66f7144d5e23 (diff) | |
| download | enigma2-00cd844ebd702ecd465acd16834d6459b8caef2d.tar.gz enigma2-00cd844ebd702ecd465acd16834d6459b8caef2d.zip | |
%s/Configmode/Configuration Mode/g
| -rw-r--r-- | data/setup.xml | 4 | ||||
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 10 | ||||
| -rw-r--r-- | po/de.po | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/data/setup.xml b/data/setup.xml index e04a51dc..173aac49 100644 --- a/data/setup.xml +++ b/data/setup.xml @@ -61,11 +61,11 @@ </setup> <setup key="satconfig" title="Sat / Dish Setup"> <item text="Tuner-Slot">config.sat.tunerslot</item> - <item text="Configmode">config.sat.configmode</item> + <item text="Configuration Mode">config.sat.configmode</item> <item text="DiSEqC">config.sat.diseqc</item> <item text="Longitude">config.sat.diseqca</item> <item text="Latitude">config.sat.diseqcb</item> <item text="use power delta" >config.sat.diseqcc</item> <!--<item text="DiSEqC D">config.sat.diseqcd</item>--> </setup> -</setupxml>
\ No newline at end of file +</setupxml> diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index f2cdaace..97908a06 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -34,7 +34,7 @@ class NimSetup(Screen): self.list = [ ] if (nimmanager.getNimType(self.nim.slotid) == nimmanager.nimType["DVB-S"]): - self.list.append(getConfigListEntry(_("Configmode"), config.Nims[self.nim.slotid].configMode)) + self.list.append(getConfigListEntry(_("Configuration Mode"), config.Nims[self.nim.slotid].configMode)) if config.Nims[self.nim.slotid].configMode.value == 0: #simple setup self.list.append(getConfigListEntry(_("Diseqcmode"), config.Nims[self.nim.slotid].diseqcMode)) @@ -61,11 +61,11 @@ class NimSetup(Screen): def newConfig(self): if self["config"].getCurrent()[0] == _("Diseqcmode"): self.createSetup() - if self["config"].getCurrent()[0] == _("Configmode"): + if self["config"].getCurrent()[0] == _("Configuration Mode"): self.createSetup() def keyLeft(self): - if self["config"].getCurrent()[0] == _("Configmode"): + if self["config"].getCurrent()[0] == _("Configuration Mode"): if self.nim.slotid == 0: return self["config"].handleKey(config.key["prevElement"]) @@ -75,7 +75,7 @@ class NimSetup(Screen): #forbid to enable advanced mode until its ready #perhaps its better to use an own element here #this suckz .. how enable advanced config? - if self["config"].getCurrent()[0] == _("Configmode"): + if self["config"].getCurrent()[0] == _("Configuration Mode"): if self.nim.slotid == 0: return @@ -145,4 +145,4 @@ class NimSelection(Screen): selection = self["nimlist"].getCurrent() if selection[1].nimType != -1: #unknown/empty self.session.open(NimSetup, selection[1].slotid) -
\ No newline at end of file + @@ -107,7 +107,7 @@ msgstr "" #: ../lib/python/Screens/Satconfig.py:37 ../lib/python/Screens/Satconfig.py:64 #: ../lib/python/Screens/Satconfig.py:68 ../lib/python/Screens/Satconfig.py:78 #: ../data/ -msgid "Configmode" +msgid "Configuration Mode" msgstr "Konfigurationsmodus" #: ../lib/python/Components/SetupDevices.py:21 |
