aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-04-03 15:36:35 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-04-03 15:36:35 +0000
commitee6ee608040d130ded361d1342ef528c79a56c7b (patch)
treec993dcb78e2eea8fa627dbcf6e0605361a2c114c
parent8ed4d48a8dc5cf0a399ae147b34f845a15fb94d4 (diff)
downloadenigma2-ee6ee608040d130ded361d1342ef528c79a56c7b.tar.gz
enigma2-ee6ee608040d130ded361d1342ef528c79a56c7b.zip
Implement "show infobar on event change"
enable/disable is possible in Usage Setup... default is on
-rw-r--r--data/setup.xml1
-rw-r--r--lib/python/Components/UsageConfig.py1
-rw-r--r--lib/python/Screens/InfoBarGenerics.py15
-rw-r--r--po/de.po78
-rw-r--r--po/enigma2.pot1046
5 files changed, 730 insertions, 411 deletions
diff --git a/data/setup.xml b/data/setup.xml
index e7498780..327b759a 100644
--- a/data/setup.xml
+++ b/data/setup.xml
@@ -27,6 +27,7 @@
<item text="12V output">config.usage.output_12V</item>
<item text="Show infobar on channel change">config.usage.show_infobar_on_zap</item>
<item text="Show infobar on skip forward/backward">config.usage.show_infobar_on_skip</item>
+ <item text="Show infobar on event change">config.usage.show_infobar_on_event_change</item>
</setup>
<setup key="harddisk" title="Harddisk setup">
<item text="Harddisk standby after">config.usage.hdd_standby</item>
diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py
index 7a286da1..393dbbc4 100644
--- a/lib/python/Components/UsageConfig.py
+++ b/lib/python/Components/UsageConfig.py
@@ -14,6 +14,7 @@ def InitUsageConfig():
("8", "8 " + _("seconds")), ("9", "9 " + _("seconds")), ("10", "10 " + _("seconds"))])
config.usage.show_infobar_on_zap = ConfigYesNo(default = True)
config.usage.show_infobar_on_skip = ConfigYesNo(default = True)
+ config.usage.show_infobar_on_event_change = ConfigYesNo(default = True)
config.usage.hdd_standby = ConfigSelection(default = "120", choices = [
("0", _("no standby")), ("2", "10 " + _("seconds")), ("6", "30 " + _("seconds")),
("12", "1 " + _("minute")), ("24", "2 " + _("minutes")),
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 62cc5f3b..e364def9 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -70,7 +70,8 @@ class InfoBarShowHide:
self.__event_tracker = ServiceEventTracker(screen=self, eventmap=
{
- iPlayableService.evStart: self.__serviceStarted
+ iPlayableService.evStart: self.__serviceStarted,
+ iPlayableService.evUpdatedEventInfo: self.__eventInfoChanged
})
self.__state = self.STATE_SHOWN
@@ -83,7 +84,19 @@ class InfoBarShowHide:
self.onShow.append(self.__onShow)
self.onHide.append(self.__onHide)
+ def __eventInfoChanged(self):
+ old_begin_time = self.current_begin_time
+ service = self.session.nav.getCurrentService()
+ info = service and service.info()
+ ptr = info and info.getEvent(0)
+ if ptr:
+ self.current_begin_time = ptr.getBeginTime()
+ if config.usage.show_infobar_on_event_change.value:
+ if old_begin_time and old_begin_time != self.current_begin_time:
+ self.doShow()
+
def __serviceStarted(self):
+ self.current_begin_time=0
if config.usage.show_infobar_on_zap.value:
self.doShow()
diff --git a/po/de.po b/po/de.po
index d91dbed7..e7bc2165 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-23 17:04+0100\n"
+"POT-Creation-Date: 2007-04-03 17:32+0200\n"
"PO-Revision-Date: 2006-12-19 08:29+0100\n"
"Last-Translator: Stefan Pluecken <stefanpl@baer.rwth-aachen.de>\n"
"Language-Team: none\n"
@@ -34,6 +34,9 @@ msgstr ""
msgid "#000000"
msgstr ""
+msgid "#003258"
+msgstr ""
+
msgid "#0064c7"
msgstr ""
@@ -43,6 +46,9 @@ msgstr ""
msgid "#389416"
msgstr ""
+msgid "#77ffffff"
+msgstr ""
+
msgid "#80000000"
msgstr ""
@@ -86,6 +92,12 @@ msgstr "/usr/share/enigma2 Verzeichnis"
msgid "/var directory"
msgstr "/var Verzeichnis"
+msgid "0"
+msgstr ""
+
+msgid "1"
+msgstr ""
+
msgid "1.0"
msgstr "1.0"
@@ -116,21 +128,45 @@ msgstr "immer 16:9"
msgid "18 V"
msgstr "18 V"
+msgid "2"
+msgstr ""
+
+msgid "3"
+msgstr ""
+
msgid "30 minutes"
msgstr "30 Minuten"
+msgid "4"
+msgstr ""
+
msgid "4:3 Letterbox"
msgstr ""
msgid "4:3 PanScan"
msgstr ""
+msgid "5"
+msgstr ""
+
msgid "5 minutes"
msgstr "5 Minuten"
+msgid "6"
+msgstr ""
+
msgid "60 minutes"
msgstr "60 Minuten"
+msgid "7"
+msgstr ""
+
+msgid "8"
+msgstr ""
+
+msgid "9"
+msgstr ""
+
msgid "<unknown>"
msgstr "<unbekannt>"
@@ -528,6 +564,9 @@ msgstr "Erkannte Festplatte:"
msgid "Detected NIMs:"
msgstr "Erkannte Tuner:"
+msgid "Device Setup..."
+msgstr ""
+
msgid "DiSEqC"
msgstr "DiSEqC"
@@ -733,6 +772,9 @@ msgstr "Assistent beenden"
msgid "Exit wizard"
msgstr "Assistenten beenden"
+msgid "Extended Setup..."
+msgstr ""
+
msgid "Extensions"
msgstr "Erweiterungen"
@@ -854,6 +896,9 @@ msgstr ""
msgid "Increased voltage"
msgstr "Erhöhte Spannung"
+msgid "Index"
+msgstr ""
+
msgid "InfoBar"
msgstr "Infoleiste"
@@ -1067,6 +1112,16 @@ msgstr "Name"
msgid "Nameserver"
msgstr "Nameserver"
+#, python-format
+msgid "Nameserver %d"
+msgstr ""
+
+msgid "Nameserver Setup"
+msgstr ""
+
+msgid "Nameserver Setup..."
+msgstr ""
+
msgid "Netmask"
msgstr "Netzmaske"
@@ -1246,6 +1301,9 @@ msgstr "Aufgenommene Filme abspielen..."
msgid "Please choose an extension..."
msgstr "Bitte eine Erweiterung auswählen..."
+msgid "Please do not change values when you not know what you do!"
+msgstr ""
+
msgid "Please enter a name for the new bouquet"
msgstr "Bitte einen Namen für das neue Bouquet eingeben"
@@ -1489,6 +1547,9 @@ msgstr "Sat-/Schüsseleinstellungen"
msgid "Satellite"
msgstr "Satellit"
+msgid "Satellite Equipment Setup"
+msgstr ""
+
msgid "Satellites"
msgstr "Satelliten"
@@ -1516,6 +1577,9 @@ msgstr "Springen"
msgid "Select HDD"
msgstr "Festplattenwahl"
+msgid "Select Network Adapter"
+msgstr ""
+
msgid "Select a movie"
msgstr "Filmauswahl"
@@ -1580,6 +1644,9 @@ msgstr "Einstellungen"
msgid "Show infobar on channel change"
msgstr "Zeige Infobar beim Kanalwechsel"
+msgid "Show infobar on event change"
+msgstr "Zeige Infobar beim Sendungswechsel"
+
msgid "Show infobar on skip forward/backward"
msgstr "Zeige Infobar beim Spulen"
@@ -1787,6 +1854,9 @@ msgstr "Die Pincodes unterscheiden sich."
msgid "The sleep timer has been activated."
msgstr "Der Ausschalt-Timer wurde aktiviert"
+msgid "The sleep timer has been disabled."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1972,6 +2042,9 @@ msgstr "Dreambox wird geupdatet... Bitte warten"
msgid "Use DHCP"
msgstr "Adresse automatisch beziehen (DHCP)"
+msgid "Use a gateway"
+msgstr ""
+
msgid "Use power measurement"
msgstr "Stromaufnahme messen"
@@ -2006,6 +2079,9 @@ msgstr "Videorekorderumschaltung"
msgid "VCR scart"
msgstr "Scart-Videorekorder"
+msgid "View Rass interactive..."
+msgstr ""
+
msgid "View teletext..."
msgstr "Videotext"
diff --git a/po/enigma2.pot b/po/enigma2.pot
index a48961f8..5842a7b6 100644
--- a/po/enigma2.pot
+++ b/po/enigma2.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-04-03 17:32+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgid ""
"Enigma2 will restart after the restore"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:109
-#: ../lib/python/Screens/PluginBrowser.py:111
+#: ../lib/python/Screens/PluginBrowser.py:110
+#: ../lib/python/Screens/PluginBrowser.py:112
msgid "\"?"
msgstr ""
@@ -63,19 +63,19 @@ msgstr ""
msgid "/var directory"
msgstr ""
-#: ../lib/python/Components/NimManager.py:774
+#: ../lib/python/Components/NimManager.py:840
msgid "1.0"
msgstr ""
-#: ../lib/python/Components/NimManager.py:774
+#: ../lib/python/Components/NimManager.py:840
msgid "1.1"
msgstr ""
-#: ../lib/python/Components/NimManager.py:774
+#: ../lib/python/Components/NimManager.py:840
msgid "1.2"
msgstr ""
-#: ../lib/python/Components/NimManager.py:749
+#: ../lib/python/Components/NimManager.py:815
msgid "13 V"
msgstr ""
@@ -95,7 +95,7 @@ msgstr ""
msgid "16:9 always"
msgstr ""
-#: ../lib/python/Components/NimManager.py:749
+#: ../lib/python/Components/NimManager.py:815
msgid "18 V"
msgstr ""
@@ -123,56 +123,68 @@ msgstr ""
msgid "<unknown>"
msgstr ""
-#: ../lib/python/Screens/Menu.py:125 ../lib/python/Screens/Menu.py:165
-#: ../lib/python/Screens/Menu.py:168 ../lib/python/Screens/Setup.py:117
+#: ../lib/python/Screens/Menu.py:123 ../lib/python/Screens/Menu.py:163
+#: ../lib/python/Screens/Menu.py:166 ../lib/python/Screens/Setup.py:117
msgid "??"
msgstr ""
-#: ../lib/python/Components/NimManager.py:773
+#: ../lib/python/Components/NimManager.py:839
msgid "A"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../RecordTimer.py:270
+msgid ""
+"A finished record timer wants to set your\n"
+"Dreambox to standby. Do that now?"
+msgstr ""
+
+#: ../RecordTimer.py:276
+msgid ""
+"A finished record timer wants to shut down\n"
+"your Dreambox. Shutdown now?"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:1399
msgid ""
"A recording is currently running.\n"
"What do you want to do?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:549
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:555
msgid ""
"A recording is currently running. Please stop the recording before trying to "
"configure the positioner."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:273
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:274
msgid ""
"A recording is currently running. Please stop the recording before trying to "
"start the satfinder."
msgstr ""
-#: ../SleepTimer.py:32
+#: ../SleepTimer.py:30
msgid ""
-"A sleep timer want's to set your\n"
+"A sleep timer wants to set your\n"
"Dreambox to standby. Do that now?"
msgstr ""
-#: ../SleepTimer.py:27
+#: ../SleepTimer.py:25
msgid ""
-"A sleep timer want's to shut down\n"
+"A sleep timer wants to shut down\n"
"your Dreambox. Shutdown now?"
msgstr ""
-#: ../RecordTimer.py:178
+#: ../RecordTimer.py:225
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
msgstr ""
-#: ../lib/python/Components/NimManager.py:755
+#: ../lib/python/Components/NimManager.py:821
msgid "AA"
msgstr ""
-#: ../lib/python/Components/NimManager.py:755
+#: ../lib/python/Components/NimManager.py:821
msgid "AB"
msgstr ""
@@ -180,11 +192,12 @@ msgstr ""
msgid "About..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1167
+#: ../lib/python/Screens/InfoBarGenerics.py:1237
msgid "Activate Picture in Picture"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:25
+#: ../lib/python/Screens/NetworkSetup.py:38
+#: ../lib/python/Screens/TimerEdit.py:27
msgid "Add"
msgstr ""
@@ -201,11 +214,11 @@ msgstr ""
msgid "Add timer"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1476
+#: ../lib/python/Screens/InfoBarGenerics.py:1556
msgid "Add to bouquet"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1478
+#: ../lib/python/Screens/InfoBarGenerics.py:1558
msgid "Add to favourites"
msgstr ""
@@ -221,8 +234,8 @@ msgstr ""
msgid "Album:"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:600
-#: ../lib/python/Screens/ChannelSelection.py:749
+#: ../lib/python/Screens/ChannelSelection.py:615
+#: ../lib/python/Screens/ChannelSelection.py:754
msgid "All"
msgstr ""
@@ -238,42 +251,42 @@ msgstr ""
msgid "Artist:"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:61
#: ../lib/python/Screens/SleepTimerEdit.py:63
+#: ../lib/python/Screens/SleepTimerEdit.py:65
msgid "Ask before shutdown:"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1338
+#: ../lib/python/Screens/InfoBarGenerics.py:1420
msgid "Audio Options..."
msgstr ""
-#: ../lib/python/Screens/Ci.py:20 ../lib/python/Screens/ScanSetup.py:360
-#: ../lib/python/Screens/ScanSetup.py:363
-#: ../lib/python/Screens/ScanSetup.py:369
-#: ../lib/python/Screens/ScanSetup.py:371
-#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Screens/ScanSetup.py:381
-#: ../lib/python/Screens/ScanSetup.py:382
-#: ../lib/python/Screens/ScanSetup.py:383
+#: ../lib/python/Screens/Ci.py:20 ../lib/python/Screens/ScanSetup.py:363
+#: ../lib/python/Screens/ScanSetup.py:366
+#: ../lib/python/Screens/ScanSetup.py:372
+#: ../lib/python/Screens/ScanSetup.py:374
+#: ../lib/python/Screens/ScanSetup.py:380
#: ../lib/python/Screens/ScanSetup.py:384
#: ../lib/python/Screens/ScanSetup.py:385
#: ../lib/python/Screens/ScanSetup.py:386
+#: ../lib/python/Screens/ScanSetup.py:387
+#: ../lib/python/Screens/ScanSetup.py:388
+#: ../lib/python/Screens/ScanSetup.py:389
msgid "Auto"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:603 ../data/
+#: ../lib/python/Screens/ScanSetup.py:606 ../data/
msgid "Automatic Scan"
msgstr ""
-#: ../lib/python/Components/NimManager.py:773
+#: ../lib/python/Components/NimManager.py:839
msgid "B"
msgstr ""
-#: ../lib/python/Components/NimManager.py:755
+#: ../lib/python/Components/NimManager.py:821
msgid "BA"
msgstr ""
-#: ../lib/python/Components/NimManager.py:755
+#: ../lib/python/Components/NimManager.py:821
msgid "BB"
msgstr ""
@@ -289,11 +302,12 @@ msgstr ""
msgid "Backup Mode"
msgstr ""
-#: ../lib/python/Components/NimManager.py:750
+#: ../lib/python/Components/NimManager.py:816
msgid "Band"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:243
+#: ../lib/python/Screens/ServiceInfo.py:138
msgid "Bandwidth"
msgstr ""
@@ -301,7 +315,7 @@ msgstr ""
msgid "Bus: "
msgstr ""
-#: ../lib/python/Components/NimManager.py:767
+#: ../lib/python/Components/NimManager.py:833
msgid "C-Band"
msgstr ""
@@ -313,7 +327,7 @@ msgstr ""
msgid "CVBS"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:862
+#: ../lib/python/Screens/ChannelSelection.py:867
msgid "Cable"
msgstr ""
@@ -344,7 +358,7 @@ msgstr ""
msgid "Catalan"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:163
+#: ../lib/python/Screens/ChannelSelection.py:175
#: ../lib/python/Screens/ParentalControlSetup.py:20 ../data/
msgid "Change pin code"
msgstr ""
@@ -365,7 +379,7 @@ msgstr ""
msgid "Channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:151
+#: ../lib/python/Screens/InfoBarGenerics.py:171
msgid "Channel:"
msgstr ""
@@ -373,7 +387,7 @@ msgstr ""
msgid "Choose source"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:27
+#: ../lib/python/Screens/TimerEdit.py:29
msgid "Cleanup"
msgstr ""
@@ -381,7 +395,7 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:214
#: ../lib/python/Screens/ScanSetup.py:236
#: ../lib/python/Screens/ScanSetup.py:251
-#: ../lib/python/Screens/ScanSetup.py:587
+#: ../lib/python/Screens/ScanSetup.py:590
msgid "Clear before scan"
msgstr ""
@@ -397,12 +411,20 @@ msgstr ""
msgid "Code rate low"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:118
-#: ../lib/python/Screens/Satconfig.py:120
+#: ../lib/python/Screens/ServiceInfo.py:140
+msgid "Coderate HP"
+msgstr ""
+
+#: ../lib/python/Screens/ServiceInfo.py:139
+msgid "Coderate LP"
+msgstr ""
+
+#: ../lib/python/Screens/Satconfig.py:122
+#: ../lib/python/Screens/Satconfig.py:124
msgid "Command order"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:114
+#: ../lib/python/Screens/Satconfig.py:118
msgid "Committed DiSEqC command"
msgstr ""
@@ -410,23 +432,23 @@ msgstr ""
msgid "Compact Flash"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:339
-#: ../lib/python/Screens/ScanSetup.py:340
-#: ../lib/python/Components/NimManager.py:797
+#: ../lib/python/Screens/ScanSetup.py:342
+#: ../lib/python/Screens/ScanSetup.py:343
+#: ../lib/python/Components/NimManager.py:863
msgid "Complete"
msgstr ""
#: ../lib/python/Screens/Satconfig.py:47
-#: ../lib/python/Screens/Satconfig.py:143 ../data/
+#: ../lib/python/Screens/Satconfig.py:147 ../data/
msgid "Configuration Mode"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:92
+#: ../lib/python/Screens/Ipkg.py:94
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:293
msgid "Configuring"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:208
+#: ../lib/python/Screens/TimerEdit.py:231
msgid "Conflicting timer"
msgstr ""
@@ -446,6 +468,10 @@ msgid ""
"retrying..."
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:141
+msgid "Constellation"
+msgstr ""
+
#: ../lib/python/Components/Harddisk.py:132
msgid "Create movie folder failed"
msgstr ""
@@ -474,11 +500,11 @@ msgstr ""
msgid "Czech"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:358
+#: ../lib/python/Screens/ScanSetup.py:361
msgid "DVB-S"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:358
+#: ../lib/python/Screens/ScanSetup.py:361
msgid "DVB-S2"
msgstr ""
@@ -490,11 +516,12 @@ msgstr ""
msgid "Date"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:56 ../data/
+#: ../lib/python/Screens/SleepTimerEdit.py:58 ../data/
msgid "Deep Standby"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:24
+#: ../lib/python/Screens/NetworkSetup.py:37
+#: ../lib/python/Screens/TimerEdit.py:26
msgid "Delete"
msgstr ""
@@ -518,11 +545,11 @@ msgstr ""
msgid "Detected NIMs:"
msgstr ""
-#: ../lib/python/Components/NimManager.py:704
+#: ../lib/python/Components/NimManager.py:770
msgid "DiSEqC A/B"
msgstr ""
-#: ../lib/python/Components/NimManager.py:705
+#: ../lib/python/Components/NimManager.py:771
msgid "DiSEqC A/B/C/D"
msgstr ""
@@ -530,19 +557,19 @@ msgstr ""
msgid "DiSEqC Mode"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:110
+#: ../lib/python/Screens/Satconfig.py:114
msgid "DiSEqC mode"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:122
+#: ../lib/python/Screens/Satconfig.py:126
msgid "DiSEqC repeats"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:81
+#: ../lib/python/Screens/TimerEdit.py:104
msgid "Disable"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1165
+#: ../lib/python/Screens/InfoBarGenerics.py:1235
msgid "Disable Picture in Picture"
msgstr ""
@@ -550,7 +577,7 @@ msgstr ""
msgid "Disable Subtitles"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:54
+#: ../lib/python/Screens/SleepTimerEdit.py:55
msgid "Disabled"
msgstr ""
@@ -562,7 +589,7 @@ msgid ""
"retrying..."
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:111
+#: ../lib/python/Screens/PluginBrowser.py:112
msgid ""
"Do you really want to REMOVE\n"
"the plugin \""
@@ -573,7 +600,7 @@ msgstr ""
msgid "Do you really want to delete %s?"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:109
+#: ../lib/python/Screens/PluginBrowser.py:110
msgid ""
"Do you really want to download\n"
"the plugin \""
@@ -591,7 +618,7 @@ msgid ""
"After pressing OK, please wait!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1655
+#: ../lib/python/Screens/InfoBarGenerics.py:1738
msgid "Do you want to resume this playback?"
msgstr ""
@@ -604,12 +631,16 @@ msgid ""
"After pressing OK, please wait!"
msgstr ""
+#: ../lib/python/Screens/TimerEdit.py:78
+msgid "Don't stop current event but disable coming events"
+msgstr ""
+
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:307
#, python-format
msgid "Done - Installed or upgraded %d packages"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:54
+#: ../lib/python/Screens/Ipkg.py:56
#, python-format
msgid "Done - Installed or upgraded %d packages with %d errors"
msgstr ""
@@ -618,16 +649,16 @@ msgstr ""
msgid "Download Plugins"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:122
+#: ../lib/python/Screens/PluginBrowser.py:123
msgid "Downloadable new plugins"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:79
+#: ../lib/python/Screens/Ipkg.py:81
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:280
msgid "Downloading"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:88
+#: ../lib/python/Screens/PluginBrowser.py:89
msgid "Downloading plugin information. Please wait..."
msgstr ""
@@ -635,7 +666,7 @@ msgstr ""
msgid "Dutch"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:870
+#: ../lib/python/Screens/ChannelSelection.py:875
msgid "E"
msgstr ""
@@ -644,8 +675,8 @@ msgstr ""
msgid "ERROR - failed to scan (%s)!"
msgstr ""
-#: ../lib/python/Components/NimManager.py:719
-#: ../lib/python/Components/NimManager.py:790
+#: ../lib/python/Components/NimManager.py:785
+#: ../lib/python/Components/NimManager.py:856
msgid "East"
msgstr ""
@@ -653,11 +684,12 @@ msgstr ""
msgid "Edit services list"
msgstr ""
-#: ../lib/python/Screens/Subtitles.py:31 ../lib/python/Screens/TimerEdit.py:79
+#: ../lib/python/Screens/Subtitles.py:31
+#: ../lib/python/Screens/TimerEdit.py:102
msgid "Enable"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:72
+#: ../lib/python/Screens/Satconfig.py:76
msgid "Enable 5V for active antenna"
msgstr ""
@@ -665,7 +697,7 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:52
+#: ../lib/python/Screens/SleepTimerEdit.py:53
msgid "Enabled"
msgstr ""
@@ -693,11 +725,11 @@ msgid ""
"© 2006 - Stephan Reichholf"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:345
+#: ../lib/python/Screens/InfoBarGenerics.py:359
msgid "Enter main menu..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:163
+#: ../lib/python/Screens/ChannelSelection.py:175
msgid "Enter the service pin"
msgstr ""
@@ -721,19 +753,24 @@ msgstr ""
msgid "Exit editor"
msgstr ""
+#: ../lib/python/Screens/NetworkSetup.py:154
+msgid "Extended Setup..."
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:201
#: ../lib/python/Screens/ScanSetup.py:203
#: ../lib/python/Screens/ScanSetup.py:233
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:436
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140
+#: ../lib/python/Screens/ServiceInfo.py:133
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:442
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:141
msgid "FEC"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:115
+#: ../lib/python/Screens/Satconfig.py:119
msgid "Fast DiSEqC"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:603
+#: ../lib/python/Screens/ChannelSelection.py:618
msgid "Favourites"
msgstr ""
@@ -748,14 +785,15 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:196
#: ../lib/python/Screens/ScanSetup.py:229
#: ../lib/python/Screens/ScanSetup.py:240
+#: ../lib/python/Screens/ServiceInfo.py:129
#: ../lib/python/Screens/TimerEntry.py:139
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:432
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:136
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:438
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:137
msgid "Frequency"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Fri"
msgstr ""
@@ -784,7 +822,7 @@ msgid ""
"Do you want to Restart the GUI now?"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:32 ../data/
+#: ../lib/python/Screens/NetworkSetup.py:137 ../data/
msgid "Gateway"
msgstr ""
@@ -797,19 +835,23 @@ msgstr ""
msgid "German"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:90
+#: ../lib/python/Screens/PluginBrowser.py:91
msgid "Getting plugin information. Please wait..."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:233
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:176
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:234
msgid "Goto 0"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:230
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:231
msgid "Goto position"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:143
+msgid "Guard Interval"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:248
msgid "Guard interval mode"
msgstr ""
@@ -820,12 +862,16 @@ msgstr ""
msgid "Harddisk"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:144
+msgid "Hierarchy Information"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:249
msgid "Hierarchy mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1304
-#: ../lib/python/Screens/InfoBarGenerics.py:1312
+#: ../lib/python/Screens/InfoBarGenerics.py:1374
+#: ../lib/python/Screens/InfoBarGenerics.py:1382
msgid "How many minutes do you want to record?"
msgstr ""
@@ -833,7 +879,7 @@ msgstr ""
msgid "Hungarian"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:29 ../data/
+#: ../lib/python/Screens/NetworkSetup.py:133 ../data/
msgid "IP Address"
msgstr ""
@@ -851,12 +897,12 @@ msgstr ""
msgid "Image-Upgrade"
msgstr ""
-#: ../RecordTimer.py:181
+#: ../RecordTimer.py:228
msgid ""
"In order to record a timer, the TV was switched to the recording service!\n"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:139
+#: ../lib/python/Screens/Satconfig.py:143
msgid "Increased voltage"
msgstr ""
@@ -876,12 +922,12 @@ msgstr ""
msgid "Input"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:88
+#: ../lib/python/Screens/Ipkg.py:90
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:289
msgid "Installing"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1214
+#: ../lib/python/Screens/InfoBarGenerics.py:1284
msgid "Instant Record..."
msgstr ""
@@ -892,8 +938,9 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:197
#: ../lib/python/Screens/ScanSetup.py:230
#: ../lib/python/Screens/ScanSetup.py:242
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:433
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:137
+#: ../lib/python/Screens/ServiceInfo.py:132
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:439
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:138
msgid "Inversion"
msgstr ""
@@ -901,19 +948,19 @@ msgstr ""
msgid "Italian"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:107
+#: ../lib/python/Screens/Satconfig.py:111
msgid "LNB"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:132
+#: ../lib/python/Screens/Satconfig.py:136
msgid "LOF"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:136
+#: ../lib/python/Screens/Satconfig.py:140
msgid "LOF/H"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:135
+#: ../lib/python/Screens/Satconfig.py:139
msgid "LOF/L"
msgstr ""
@@ -922,27 +969,27 @@ msgid "Language selection"
msgstr ""
#: ../lib/python/Screens/Satconfig.py:26
-#: ../lib/python/Screens/Satconfig.py:126 ../data/
+#: ../lib/python/Screens/Satconfig.py:130 ../data/
msgid "Latitude"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1459
msgid "Left"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:225
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:226
msgid "Limit east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:224
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:225
msgid "Limit west"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:223
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:224
msgid "Limits off"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:226
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:227
msgid "Limits on"
msgstr ""
@@ -951,7 +998,7 @@ msgid "List of Storage Devices"
msgstr ""
#: ../lib/python/Screens/Satconfig.py:24
-#: ../lib/python/Screens/Satconfig.py:124 ../data/
+#: ../lib/python/Screens/Satconfig.py:128 ../data/
msgid "Longitude"
msgstr ""
@@ -971,8 +1018,8 @@ msgstr ""
msgid "Make this mark just a mark"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:454
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:460
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:172
msgid "Manual transponder"
msgstr ""
@@ -987,11 +1034,12 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:204
#: ../lib/python/Screens/ScanSetup.py:232
#: ../lib/python/Screens/ScanSetup.py:246
+#: ../lib/python/Screens/ServiceInfo.py:134
msgid "Modulation"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Mon"
msgstr ""
@@ -1009,15 +1057,15 @@ msgstr ""
msgid "Mount failed"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1173
+#: ../lib/python/Screens/InfoBarGenerics.py:1243
msgid "Move Picture in Picture"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:216
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:217
msgid "Move east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:213
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:214
msgid "Move west"
msgstr ""
@@ -1033,16 +1081,17 @@ msgstr ""
msgid "Multiple service support"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:338
+#: ../lib/python/Screens/ScanSetup.py:341
msgid "Multisat"
msgstr ""
-#: ../lib/python/Components/NimManager.py:488
+#: ../lib/python/Components/NimManager.py:490
+#: ../lib/python/Components/NimManager.py:495
msgid "N/A"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:529
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:253
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:535
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:254
msgid "NIM "
msgstr ""
@@ -1054,11 +1103,12 @@ msgstr ""
msgid "Name"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:33 ../data/
-msgid "Nameserver"
+#: ../lib/python/Screens/NetworkSetup.py:66
+#, python-format
+msgid "Nameserver %d"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:31 ../data/
+#: ../lib/python/Screens/NetworkSetup.py:134 ../data/
msgid "Netmask"
msgstr ""
@@ -1071,11 +1121,11 @@ msgstr ""
msgid "Network scan"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:854
+#: ../lib/python/Screens/ChannelSelection.py:859
msgid "New"
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:216
+#: ../lib/python/Screens/ParentalControlSetup.py:235
msgid "New pin"
msgstr ""
@@ -1091,21 +1141,21 @@ msgstr ""
msgid "No"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1324
+#: ../lib/python/Screens/InfoBarGenerics.py:1394
msgid "No HDD found or HDD not initialized!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1879
+#: ../lib/python/Screens/InfoBarGenerics.py:1962
msgid ""
"No data on transponder!\n"
"(Timeout reading PAT)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1257
+#: ../lib/python/Screens/InfoBarGenerics.py:1327
msgid "No event info found, recording indefinitely."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1877
+#: ../lib/python/Screens/InfoBarGenerics.py:1960
msgid "No free tuner!"
msgstr ""
@@ -1114,31 +1164,45 @@ msgid ""
"No packages were upgraded yet. So you can check your network and try again."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:546
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:552
msgid "No positioner capable frontend found."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:270
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:271
msgid "No satellite frontend found!!"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:561
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:567
msgid "No tuner is configured for use with a diseqc positioner!"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:363
-#: ../lib/python/Screens/ScanSetup.py:371
-#: ../lib/python/Screens/ScanSetup.py:386
-#: ../lib/python/Components/NimManager.py:755
-#: ../lib/python/Components/NimManager.py:759
-#: ../lib/python/Components/NimManager.py:773
-#: ../lib/python/Components/NimManager.py:774
-#: ../lib/python/Components/NimManager.py:788
+#: ../lib/python/Screens/ParentalControlSetup.py:133
+msgid ""
+"No valid service PIN found!\n"
+"Do you like to change the service PIN now?\n"
+"When you say 'No' here the service protection stay disabled!"
+msgstr ""
+
+#: ../lib/python/Screens/ParentalControlSetup.py:131
+msgid ""
+"No valid setup PIN found!\n"
+"Do you like to change the setup PIN now?\n"
+"When you say 'No' here the setup protection stay disabled!"
+msgstr ""
+
+#: ../lib/python/Screens/ScanSetup.py:366
+#: ../lib/python/Screens/ScanSetup.py:374
+#: ../lib/python/Screens/ScanSetup.py:389
+#: ../lib/python/Components/NimManager.py:821
+#: ../lib/python/Components/NimManager.py:825
+#: ../lib/python/Components/NimManager.py:839
+#: ../lib/python/Components/NimManager.py:840
+#: ../lib/python/Components/NimManager.py:854
msgid "None"
msgstr ""
-#: ../lib/python/Components/NimManager.py:721
-#: ../lib/python/Components/NimManager.py:792
+#: ../lib/python/Components/NimManager.py:787
+#: ../lib/python/Components/NimManager.py:858
msgid "North"
msgstr ""
@@ -1146,8 +1210,8 @@ msgstr ""
msgid "Norwegian"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:559
-#: ../lib/python/Screens/ScanSetup.py:669
+#: ../lib/python/Screens/ScanSetup.py:562
+#: ../lib/python/Screens/ScanSetup.py:672
msgid ""
"Nothing to scan!\n"
"Please setup your tuner settings before you start a service scan."
@@ -1159,15 +1223,15 @@ msgstr ""
msgid "OK"
msgstr ""
-#: ../lib/python/Components/NimManager.py:750
+#: ../lib/python/Components/NimManager.py:816
msgid "Off"
msgstr ""
-#: ../lib/python/Components/NimManager.py:750
+#: ../lib/python/Components/NimManager.py:816
msgid "On"
msgstr ""
-#: ../lib/python/Components/NimManager.py:788
+#: ../lib/python/Components/NimManager.py:854
msgid "One"
msgstr ""
@@ -1175,6 +1239,10 @@ msgstr ""
msgid "Online-Upgrade"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:131
+msgid "Orbital Position"
+msgstr ""
+
#: ../lib/python/Screens/MovieSelection.py:194
msgid "Other..."
msgstr ""
@@ -1183,7 +1251,7 @@ msgstr ""
msgid "PAL"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:79
+#: ../lib/python/Screens/ServiceInfo.py:84
msgid "PIDs"
msgstr ""
@@ -1200,7 +1268,7 @@ msgstr ""
msgid "Page"
msgstr ""
-#: ../lib/python/Components/ParentalControl.py:80 ../data/
+#: ../lib/python/Components/ParentalControl.py:81 ../data/
msgid "Parental control"
msgstr ""
@@ -1212,15 +1280,19 @@ msgstr ""
msgid "Play recorded movies..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1107
+#: ../lib/python/Screens/InfoBarGenerics.py:1177
msgid "Please choose an extension..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:151
+#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:51
+msgid "Please do not change values when you not know what you do!"
+msgstr ""
+
+#: ../lib/python/Screens/ChannelSelection.py:163
msgid "Please enter a name for the new bouquet"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:197
+#: ../lib/python/Screens/ChannelSelection.py:209
msgid "Please enter a name for the new marker"
msgstr ""
@@ -1228,7 +1300,7 @@ msgstr ""
msgid "Please enter the correct pin code"
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:230
+#: ../lib/python/Screens/ParentalControlSetup.py:249
msgid "Please enter the old pin code"
msgstr ""
@@ -1240,7 +1312,7 @@ msgstr ""
msgid "Please select a subservice to record..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1485
+#: ../lib/python/Screens/InfoBarGenerics.py:1565
#: ../lib/python/Screens/SubservicesQuickzap.py:97
msgid "Please select a subservice..."
msgstr ""
@@ -1261,12 +1333,13 @@ msgid "Please wait... Loading list..."
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:199
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:435
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:139
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:441
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140
msgid "Polarity"
msgstr ""
-#: ../lib/python/Components/NimManager.py:749
+#: ../lib/python/Screens/ServiceInfo.py:135
+#: ../lib/python/Components/NimManager.py:815
msgid "Polarization"
msgstr ""
@@ -1286,41 +1359,41 @@ msgstr ""
msgid "Port D"
msgstr ""
-#: ../lib/python/Components/NimManager.py:706
+#: ../lib/python/Components/NimManager.py:772
msgid "Positioner"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
msgid "Positioner fine movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172
msgid "Positioner movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:565
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:570
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:571
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:576
msgid "Positioner setup"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175
msgid "Positioner storage"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:455
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:461
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:172
msgid "Predefined transponder"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:18
+#: ../lib/python/Screens/Ipkg.py:20
msgid "Preparing... Please wait"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:22
+#: ../lib/python/Screens/NetworkSetup.py:125
msgid "Press OK to activate the settings."
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:604
+#: ../lib/python/Screens/ScanSetup.py:607
msgid "Press OK to scan"
msgstr ""
@@ -1340,22 +1413,22 @@ msgstr ""
msgid "Protect setup"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:602
-#: ../lib/python/Screens/ChannelSelection.py:745
+#: ../lib/python/Screens/ChannelSelection.py:617
+#: ../lib/python/Screens/ChannelSelection.py:750
msgid "Provider"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:852
+#: ../lib/python/Screens/ChannelSelection.py:857
msgid "Providers"
msgstr ""
-#: ../lib/python/Components/NimManager.py:797
+#: ../lib/python/Components/NimManager.py:863
msgid "Quick"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1476
-#: ../lib/python/Screens/InfoBarGenerics.py:1478
-#: ../lib/python/Screens/InfoBarGenerics.py:1481
+#: ../lib/python/Screens/InfoBarGenerics.py:1556
+#: ../lib/python/Screens/InfoBarGenerics.py:1558
+#: ../lib/python/Screens/InfoBarGenerics.py:1561
msgid "Quickzap"
msgstr ""
@@ -1371,15 +1444,15 @@ msgstr ""
msgid "Ram Disk"
msgstr ""
-#: ../lib/python/Components/ConfigList.py:167
+#: ../lib/python/Components/ConfigList.py:170
msgid "Really close without saving settings?"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:105
+#: ../lib/python/Screens/TimerEdit.py:128
msgid "Really delete done timers?"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:113
+#: ../lib/python/Screens/TimerEdit.py:136
msgid "Really delete this timer?"
msgstr ""
@@ -1395,7 +1468,25 @@ msgstr ""
msgid "Recording"
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:217
+#: ../lib/python/Screens/Standby.py:102
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+#: ../lib/python/Screens/Standby.py:106
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+#: ../lib/python/Screens/Standby.py:100
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
+#: ../lib/python/Screens/ParentalControlSetup.py:236
msgid "Reenter new pin"
msgstr ""
@@ -1407,7 +1498,7 @@ msgstr ""
msgid "Remove a mark"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:124
+#: ../lib/python/Screens/PluginBrowser.py:125
msgid "Remove plugins"
msgstr ""
@@ -1415,6 +1506,10 @@ msgstr ""
msgid "Repeat Type"
msgstr ""
+#: ../lib/python/Screens/TimerEdit.py:79
+msgid "Repeating event currently recording... What do you want to do?"
+msgstr ""
+
#: ../lib/python/Screens/MediaPlayer.py:396
msgid "Replace current playlist"
msgstr ""
@@ -1432,10 +1527,14 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1459
msgid "Right"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:136
+msgid "Rolloff"
+msgstr ""
+
#: ../lib/python/Screens/Subtitles.py:29
msgid "Running"
msgstr ""
@@ -1445,27 +1544,32 @@ msgid "S-Video"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Sat"
msgstr ""
#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61
-#: ../lib/python/Screens/Satconfig.py:145
+#: ../lib/python/Screens/Satconfig.py:149
#: ../lib/python/Screens/ScanSetup.py:195
#: ../lib/python/Screens/ScanSetup.py:208
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:429
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:133
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:435
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:134
msgid "Satellite"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:601
-#: ../lib/python/Screens/ChannelSelection.py:747
+#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:60
+#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:65
+msgid "Satellite Equipment Setup"
+msgstr ""
+
+#: ../lib/python/Screens/ChannelSelection.py:616
+#: ../lib/python/Screens/ChannelSelection.py:752
msgid "Satellites"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:282
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:287
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:283
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:288
msgid "Satfinder"
msgstr ""
@@ -1478,24 +1582,24 @@ msgstr ""
msgid "Scaling Mode"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:595
-#: ../lib/python/Screens/ScanSetup.py:600
+#: ../lib/python/Screens/ScanSetup.py:598
+#: ../lib/python/Screens/ScanSetup.py:603
msgid "Scan NIM"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:215
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:216
msgid "Search east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:214
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:215
msgid "Search west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1389
+#: ../lib/python/Screens/InfoBarGenerics.py:1471
msgid "Select audio mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1378
+#: ../lib/python/Screens/InfoBarGenerics.py:1460
msgid "Select audio track"
msgstr ""
@@ -1503,52 +1607,52 @@ msgstr ""
msgid "Select channel to record from"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:116
+#: ../lib/python/Screens/Satconfig.py:120
msgid "Sequence repeat"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1511
+#: ../lib/python/Screens/InfoBarGenerics.py:1589
msgid "Service has been added to the favourites."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1517
+#: ../lib/python/Screens/InfoBarGenerics.py:1595
msgid "Service has been added to the selected bouquet."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1881
+#: ../lib/python/Screens/InfoBarGenerics.py:1964
msgid ""
"Service invalid!\n"
"(Timeout reading PMT)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1880
+#: ../lib/python/Screens/InfoBarGenerics.py:1963
msgid ""
"Service not found!\n"
"(SID not found in PAT)"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:67
+#: ../lib/python/Screens/Satconfig.py:71
msgid "Service scan type needed"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:78 ../data/
+#: ../lib/python/Screens/ServiceInfo.py:83 ../data/
msgid "Serviceinfo"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:856
+#: ../lib/python/Screens/ChannelSelection.py:861
msgid "Services"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
msgid "Set limits"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:64
+#: ../lib/python/Screens/SleepTimerEdit.py:66
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:39
msgid "Settings"
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:195
+#: ../lib/python/Screens/ParentalControlSetup.py:214
msgid "Show services beginning with"
msgstr ""
@@ -1560,7 +1664,7 @@ msgstr ""
msgid "Show the tv player..."
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:25
+#: ../lib/python/Screens/SleepTimerEdit.py:26
msgid "Shutdown Dreambox after"
msgstr ""
@@ -1572,7 +1676,7 @@ msgstr ""
msgid "Similar broadcasts:"
msgstr ""
-#: ../lib/python/Components/NimManager.py:702
+#: ../lib/python/Components/NimManager.py:768
msgid "Single"
msgstr ""
@@ -1580,22 +1684,22 @@ msgstr ""
msgid "Single EPG"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:338
+#: ../lib/python/Screens/ScanSetup.py:341
msgid "Single satellite"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:338
-#: ../lib/python/Screens/ScanSetup.py:339
-#: ../lib/python/Screens/ScanSetup.py:340
+#: ../lib/python/Screens/ScanSetup.py:341
+#: ../lib/python/Screens/ScanSetup.py:342
+#: ../lib/python/Screens/ScanSetup.py:343
msgid "Single transponder"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1143 ../data/
+#: ../lib/python/Screens/InfoBarGenerics.py:1213 ../data/
msgid "Sleep Timer"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:56
#: ../lib/python/Screens/SleepTimerEdit.py:58
+#: ../lib/python/Screens/SleepTimerEdit.py:60
msgid "Sleep timer action:"
msgstr ""
@@ -1603,11 +1707,11 @@ msgstr ""
msgid "Slideshow Interval (sec.)"
msgstr ""
-#: ../lib/python/Components/NimManager.py:725
+#: ../lib/python/Components/NimManager.py:791
msgid "Slot "
msgstr ""
-#: ../lib/python/Components/NimManager.py:557
+#: ../lib/python/Components/NimManager.py:565
msgid "Socket "
msgstr ""
@@ -1622,8 +1726,8 @@ msgid ""
"Please choose an other one."
msgstr ""
-#: ../lib/python/Components/NimManager.py:721
-#: ../lib/python/Components/NimManager.py:792
+#: ../lib/python/Components/NimManager.py:787
+#: ../lib/python/Components/NimManager.py:858
msgid "South"
msgstr ""
@@ -1631,7 +1735,7 @@ msgstr ""
msgid "Spanish"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:58 ../data/
+#: ../lib/python/Screens/SleepTimerEdit.py:60 ../data/
msgid "Standby"
msgstr ""
@@ -1639,7 +1743,7 @@ msgstr ""
msgid "Start"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1408
msgid "Start recording?"
msgstr ""
@@ -1651,47 +1755,55 @@ msgstr ""
msgid "Step "
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:220
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:221
msgid "Step east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:219
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:220
msgid "Step west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1459
msgid "Stereo"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:208
#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:209
#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:210
#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:211
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:212
msgid "Stop"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:977
+#: ../lib/python/Screens/InfoBarGenerics.py:1047
msgid "Stop Timeshift?"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:110
+#: ../lib/python/Screens/TimerEdit.py:77
+msgid "Stop current event and disable coming events"
+msgstr ""
+
+#: ../lib/python/Screens/TimerEdit.py:76
+msgid "Stop current event but not coming events"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBar.py:114
msgid "Stop playing this movie?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:229
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:230
msgid "Store position"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:104
+#: ../lib/python/Screens/Satconfig.py:108
msgid "Stored position"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1407
+#: ../lib/python/Screens/InfoBarGenerics.py:1489
msgid "Subservice list..."
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Sun"
msgstr ""
@@ -1701,7 +1813,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1170
+#: ../lib/python/Screens/InfoBarGenerics.py:1240
msgid "Swap Services"
msgstr ""
@@ -1709,26 +1821,34 @@ msgstr ""
msgid "Swedish"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1412
+#: ../lib/python/Screens/InfoBarGenerics.py:1494
msgid "Switch to next subservice"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1413
+#: ../lib/python/Screens/InfoBarGenerics.py:1495
msgid "Switch to previous subservice"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:198
#: ../lib/python/Screens/ScanSetup.py:231
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:434
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:138
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:440
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:139
msgid "Symbol Rate"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:864
+#: ../lib/python/Screens/ServiceInfo.py:130
+msgid "Symbolrate"
+msgstr ""
+
+#: ../lib/python/Screens/ServiceInfo.py:137 ../data/
+msgid "System"
+msgstr ""
+
+#: ../lib/python/Screens/ChannelSelection.py:869
msgid "Terrestrial"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:71
+#: ../lib/python/Screens/Satconfig.py:75
msgid "Terrestrial provider"
msgstr ""
@@ -1737,34 +1857,38 @@ msgstr ""
msgid "Test-Messagebox?"
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:249
+#: ../lib/python/Screens/ParentalControlSetup.py:268
msgid "The pin code has been changed successfully."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:170
+#: ../lib/python/Screens/ChannelSelection.py:182
#: ../lib/python/Screens/ParentalControlSetup.py:38
-#: ../lib/python/Components/ParentalControl.py:141
+#: ../lib/python/Components/ParentalControl.py:142
msgid "The pin code you entered is wrong."
msgstr ""
-#: ../lib/python/Screens/ParentalControlSetup.py:251
+#: ../lib/python/Screens/ParentalControlSetup.py:270
msgid "The pin codes you entered are different."
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:69
+#: ../lib/python/Screens/SleepTimerEdit.py:76
msgid "The sleep timer has been activated."
msgstr ""
-#: ../lib/python/Components/NimManager.py:788
+#: ../lib/python/Screens/SleepTimerEdit.py:79
+msgid "The sleep timer has been disabled."
+msgstr ""
+
+#: ../lib/python/Components/NimManager.py:854
msgid "Three"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:137
+#: ../lib/python/Screens/Satconfig.py:141
msgid "Threshold"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Thu"
msgstr ""
@@ -1782,12 +1906,12 @@ msgstr ""
msgid "Timer Type"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:52
-#: ../lib/python/Screens/SleepTimerEdit.py:54
+#: ../lib/python/Screens/SleepTimerEdit.py:53
+#: ../lib/python/Screens/SleepTimerEdit.py:55
msgid "Timer status:"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:948
+#: ../lib/python/Screens/InfoBarGenerics.py:1018
msgid "Timeshift not possible!"
msgstr ""
@@ -1800,34 +1924,46 @@ msgstr ""
msgid "Today"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:99
+#: ../lib/python/Screens/Satconfig.py:103
msgid "Tone mode"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:113
+#: ../lib/python/Screens/Satconfig.py:117
msgid "Toneburst"
msgstr ""
-#: ../lib/python/Components/NimManager.py:703
+#: ../lib/python/Components/NimManager.py:769
msgid "Toneburst A/B"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:142
+msgid "Transmission Mode"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:247
msgid "Transmission mode"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:80
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:438
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:142
+#: ../lib/python/Screens/ServiceInfo.py:85
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:444
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:143
msgid "Transponder"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:128
+msgid "Transponder Type"
+msgstr ""
+
+#: ../lib/python/Screens/ScanSetup.py:193
+msgid "Transpondertype"
+msgstr ""
+
#: ../lib/python/Screens/InputBox.py:165
msgid "Tries left:"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Tue"
msgstr ""
@@ -1837,14 +1973,14 @@ msgstr ""
msgid "Tuesday"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:202
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:427
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:131
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:203
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:433
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:132
msgid "Tune"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1878
+#: ../lib/python/Screens/InfoBarGenerics.py:1961
msgid "Tune failed!"
msgstr ""
@@ -1853,7 +1989,7 @@ msgstr ""
msgid "Tuner"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:81
+#: ../lib/python/Screens/ServiceInfo.py:86
msgid "Tuner status"
msgstr ""
@@ -1861,7 +1997,7 @@ msgstr ""
msgid "Turkish"
msgstr ""
-#: ../lib/python/Components/NimManager.py:788
+#: ../lib/python/Components/NimManager.py:854
msgid "Two"
msgstr ""
@@ -1871,7 +2007,7 @@ msgstr ""
msgid "Type of scan"
msgstr ""
-#: ../lib/python/Components/NimManager.py:715
+#: ../lib/python/Components/NimManager.py:781
msgid "USALS"
msgstr ""
@@ -1887,11 +2023,11 @@ msgid ""
"Error: "
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:121
+#: ../lib/python/Screens/Satconfig.py:125
msgid "Uncommitted DiSEqC command"
msgstr ""
-#: ../lib/python/Components/NimManager.py:767
+#: ../lib/python/Components/NimManager.py:833
msgid "Universal LNB"
msgstr ""
@@ -1920,7 +2056,7 @@ msgstr ""
msgid "Upgrade finished. Do you want to reboot your Dreambox?"
msgstr ""
-#: ../lib/python/Screens/Ipkg.py:84
+#: ../lib/python/Screens/Ipkg.py:86
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:285
msgid "Upgrading"
msgstr ""
@@ -1929,32 +2065,41 @@ msgstr ""
msgid "Upgrading Dreambox... Please wait"
msgstr ""
-#: ../lib/python/Screens/NetworkSetup.py:27 ../data/
+#: ../lib/python/Screens/NetworkSetup.py:130 ../data/
msgid "Use DHCP"
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:101
+#: ../lib/python/Screens/NetworkSetup.py:135
+msgid "Use a gateway"
+msgstr ""
+
+#: ../lib/python/Screens/Satconfig.py:105
msgid "Use usals for this sat"
msgstr ""
-#: ../lib/python/Components/NimManager.py:767
+#: ../lib/python/Components/NimManager.py:833
msgid "User defined"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1793
+#: ../lib/python/Screens/ChannelSelection.py:1308
+#: ../lib/python/Screens/InfoBarGenerics.py:571
+msgid "View Rass interactive..."
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:1876
msgid "View teletext..."
msgstr ""
-#: ../lib/python/Screens/Satconfig.py:98
+#: ../lib/python/Screens/Satconfig.py:102
msgid "Voltage mode"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:868
+#: ../lib/python/Screens/ChannelSelection.py:873
msgid "W"
msgstr ""
#: ../lib/python/Screens/EpgSelection.py:234
-#: ../lib/python/Components/EpgList.py:38
+#: ../lib/python/Components/EpgList.py:37
#: ../lib/python/Components/TimerList.py:23
msgid "Wed"
msgstr ""
@@ -1968,8 +2113,8 @@ msgstr ""
msgid "Weekday"
msgstr ""
-#: ../lib/python/Components/NimManager.py:719
-#: ../lib/python/Components/NimManager.py:790
+#: ../lib/python/Components/NimManager.py:785
+#: ../lib/python/Components/NimManager.py:856
msgid "West"
msgstr ""
@@ -2016,39 +2161,39 @@ msgid ""
"Press OK to start upgrade."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:135
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:139
msgid "Zap back to service before positioner setup?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:232
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:233
msgid "Zap back to service before satfinder?"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:471
+#: ../lib/python/Screens/ChannelSelection.py:485
msgid "[alternative edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:475
+#: ../lib/python/Screens/ChannelSelection.py:489
msgid "[bouquet edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:477
+#: ../lib/python/Screens/ChannelSelection.py:491
msgid "[favourite edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:568
+#: ../lib/python/Screens/ChannelSelection.py:583
msgid "[move mode]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:139
+#: ../lib/python/Screens/ChannelSelection.py:148
msgid "abort alternatives edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:133
+#: ../lib/python/Screens/ChannelSelection.py:142
msgid "abort bouquet edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:136
+#: ../lib/python/Screens/ChannelSelection.py:145
msgid "abort favourites edit"
msgstr ""
@@ -2056,11 +2201,11 @@ msgstr ""
msgid "about to start"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:126
+#: ../lib/python/Screens/ChannelSelection.py:135
msgid "add alternatives"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:108
+#: ../lib/python/Screens/ChannelSelection.py:117
msgid "add bouquet"
msgstr ""
@@ -2072,39 +2217,39 @@ msgstr ""
msgid "add file to playlist"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:116
+#: ../lib/python/Screens/ChannelSelection.py:125
msgid "add marker"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1404
+#: ../lib/python/Screens/InfoBarGenerics.py:1411
msgid "add recording (enter recording duration)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1402
+#: ../lib/python/Screens/InfoBarGenerics.py:1409
msgid "add recording (indefinitely)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1403
+#: ../lib/python/Screens/InfoBarGenerics.py:1410
msgid "add recording (stop after current event)"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:94
+#: ../lib/python/Screens/ChannelSelection.py:103
msgid "add service to bouquet"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:96
+#: ../lib/python/Screens/ChannelSelection.py:105
msgid "add service to favourites"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:90
+#: ../lib/python/Screens/ChannelSelection.py:99
msgid "add to parental protection"
msgstr ""
-#: ../lib/python/Components/NimManager.py:672
-#: ../lib/python/Components/NimManager.py:682
+#: ../lib/python/Components/NimManager.py:738
+#: ../lib/python/Components/NimManager.py:748
msgid "advanced"
msgstr ""
@@ -2114,7 +2259,7 @@ msgid ""
"following backup:\n"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:141
+#: ../lib/python/Screens/ChannelSelection.py:150
#: ../lib/python/Screens/MovieSelection.py:25
#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:50
msgid "back"
@@ -2132,15 +2277,15 @@ msgstr ""
msgid "by Exif"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1401
msgid "change recording (duration)"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:362
+#: ../lib/python/Screens/ScanSetup.py:365
msgid "circular left"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:362
+#: ../lib/python/Screens/ScanSetup.py:365
msgid "circular right"
msgstr ""
@@ -2152,11 +2297,11 @@ msgstr ""
msgid "complex"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:600
+#: ../lib/python/Screens/InfoBarGenerics.py:658
msgid "continue"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:100
+#: ../lib/python/Screens/ChannelSelection.py:109
msgid "copy to bouquets"
msgstr ""
@@ -2181,20 +2326,20 @@ msgstr ""
msgid "disable"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:128
+#: ../lib/python/Screens/ChannelSelection.py:137
msgid "disable move mode"
msgstr ""
-#: ../lib/python/Components/UsageConfig.py:24
+#: ../lib/python/Components/UsageConfig.py:25
msgid "do not change"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1405
#: ../lib/python/Screens/TimerEntry.py:87
msgid "do nothing"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1412
msgid "don't record"
msgstr ""
@@ -2202,11 +2347,11 @@ msgstr ""
msgid "done!"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:122
+#: ../lib/python/Screens/ChannelSelection.py:131
msgid "edit alternatives"
msgstr ""
-#: ../lib/python/Components/NimManager.py:559
+#: ../lib/python/Components/NimManager.py:567
msgid "empty/unknown"
msgstr ""
@@ -2214,23 +2359,23 @@ msgstr ""
msgid "enable"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:118
+#: ../lib/python/Screens/ChannelSelection.py:127
msgid "enable bouquet edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:120
+#: ../lib/python/Screens/ChannelSelection.py:129
msgid "enable favourite edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:114
+#: ../lib/python/Screens/ChannelSelection.py:123
msgid "enable move mode"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:138
+#: ../lib/python/Screens/ChannelSelection.py:147
msgid "end alternatives edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:132
+#: ../lib/python/Screens/ChannelSelection.py:141
msgid "end bouquet edit"
msgstr ""
@@ -2239,11 +2384,11 @@ msgstr ""
msgid "end cut here"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:135
+#: ../lib/python/Screens/ChannelSelection.py:144
msgid "end favourites edit"
msgstr ""
-#: ../lib/python/Components/NimManager.py:677
+#: ../lib/python/Components/NimManager.py:743
msgid "equal to Socket A"
msgstr ""
@@ -2259,6 +2404,10 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
+#: ../lib/python/Screens/TimerEntry.py:87
+msgid "go to standby"
+msgstr ""
+
#: ../lib/python/Screens/InfoBar.py:59
msgid "hear radio..."
msgstr ""
@@ -2267,16 +2416,16 @@ msgstr ""
msgid "hide player"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:362
+#: ../lib/python/Screens/ScanSetup.py:365
msgid "horizontal"
msgstr ""
-#: ../lib/python/Components/UsageConfig.py:21
+#: ../lib/python/Components/UsageConfig.py:22
msgid "hour"
msgstr ""
-#: ../lib/python/Components/UsageConfig.py:21
#: ../lib/python/Components/UsageConfig.py:22
+#: ../lib/python/Components/UsageConfig.py:23
msgid "hours"
msgstr ""
@@ -2295,16 +2444,16 @@ msgstr ""
msgid "insert mark here"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:94
+#: ../lib/python/Screens/InfoBar.py:98
msgid "leave movie player..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1470
msgid "left"
msgstr ""
-#: ../lib/python/Screens/PluginBrowser.py:109
-#: ../lib/python/Screens/PluginBrowser.py:111
+#: ../lib/python/Screens/PluginBrowser.py:110
+#: ../lib/python/Screens/PluginBrowser.py:112
msgid "list"
msgstr ""
@@ -2312,11 +2461,11 @@ msgstr ""
msgid "locked"
msgstr ""
-#: ../lib/python/Components/NimManager.py:678
+#: ../lib/python/Components/NimManager.py:744
msgid "loopthrough to socket A"
msgstr ""
-#: ../lib/python/Components/NimManager.py:716
+#: ../lib/python/Components/NimManager.py:782
#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:22
msgid "manual"
msgstr ""
@@ -2326,14 +2475,14 @@ msgstr ""
msgid "mins"
msgstr ""
-#: ../lib/python/Components/UsageConfig.py:19
+#: ../lib/python/Components/UsageConfig.py:20
msgid "minute"
msgstr ""
-#: ../lib/python/Screens/SleepTimerEdit.py:27
-#: ../lib/python/Components/UsageConfig.py:19
+#: ../lib/python/Screens/SleepTimerEdit.py:28
#: ../lib/python/Components/UsageConfig.py:20
#: ../lib/python/Components/UsageConfig.py:21
+#: ../lib/python/Components/UsageConfig.py:22
msgid "minutes"
msgstr ""
@@ -2349,18 +2498,18 @@ msgstr ""
msgid "never"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:261
+#: ../lib/python/Screens/InfoBarGenerics.py:279
msgid "next channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:263
+#: ../lib/python/Screens/InfoBarGenerics.py:281
msgid "next channel in history"
msgstr ""
-#: ../lib/python/Screens/MessageBox.py:46
-#: ../lib/python/Screens/ScanSetup.py:341
-#: ../lib/python/Screens/ScanSetup.py:586
-#: ../lib/python/Screens/SleepTimerEdit.py:63
+#: ../lib/python/Screens/MessageBox.py:39
+#: ../lib/python/Screens/ScanSetup.py:344
+#: ../lib/python/Screens/ScanSetup.py:589
+#: ../lib/python/Screens/SleepTimerEdit.py:65
#: ../lib/python/Components/config.py:277
msgid "no"
msgstr ""
@@ -2377,7 +2526,7 @@ msgstr ""
msgid "no module found"
msgstr ""
-#: ../lib/python/Components/UsageConfig.py:18
+#: ../lib/python/Components/UsageConfig.py:19
msgid "no standby"
msgstr ""
@@ -2394,23 +2543,23 @@ msgstr ""
msgid "not locked"
msgstr ""
-#: ../lib/python/Components/NimManager.py:679
+#: ../lib/python/Components/NimManager.py:745
msgid "nothing connected"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:360
-#: ../lib/python/Screens/ScanSetup.py:369
-#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/UsageConfig.py:24
+#: ../lib/python/Screens/ScanSetup.py:363
+#: ../lib/python/Screens/ScanSetup.py:372
+#: ../lib/python/Screens/ScanSetup.py:380
#: ../lib/python/Components/config.py:281
+#: ../lib/python/Components/UsageConfig.py:25
msgid "off"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:360
-#: ../lib/python/Screens/ScanSetup.py:369
-#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/UsageConfig.py:24
+#: ../lib/python/Screens/ScanSetup.py:363
+#: ../lib/python/Screens/ScanSetup.py:372
+#: ../lib/python/Screens/ScanSetup.py:380
#: ../lib/python/Components/config.py:281
+#: ../lib/python/Components/UsageConfig.py:25
msgid "on"
msgstr ""
@@ -2422,15 +2571,15 @@ msgstr ""
msgid "only /etc/enigma2 directory"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:264
+#: ../lib/python/Screens/InfoBarGenerics.py:282
msgid "open servicelist"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:259
+#: ../lib/python/Screens/InfoBarGenerics.py:277
msgid "open servicelist(down)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:258
+#: ../lib/python/Screens/InfoBarGenerics.py:276
msgid "open servicelist(up)"
msgstr ""
@@ -2438,7 +2587,8 @@ msgstr ""
msgid "pass"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:599
+#: ../lib/python/Screens/InfoBarGenerics.py:656
+#: ../lib/python/Screens/InfoBarGenerics.py:657
msgid "pause"
msgstr ""
@@ -2450,11 +2600,11 @@ msgstr ""
msgid "please wait, loading picture..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:260
+#: ../lib/python/Screens/InfoBarGenerics.py:278
msgid "previous channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:262
+#: ../lib/python/Screens/InfoBarGenerics.py:280
msgid "previous channel in history"
msgstr ""
@@ -2470,11 +2620,11 @@ msgstr ""
msgid "remove after this position"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:124
+#: ../lib/python/Screens/ChannelSelection.py:133
msgid "remove all alternatives"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:102
+#: ../lib/python/Screens/ChannelSelection.py:111
msgid "remove all new found flags"
msgstr ""
@@ -2482,16 +2632,16 @@ msgstr ""
msgid "remove before this position"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:104
-#: ../lib/python/Screens/ChannelSelection.py:109
+#: ../lib/python/Screens/ChannelSelection.py:113
+#: ../lib/python/Screens/ChannelSelection.py:118
msgid "remove entry"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:92
+#: ../lib/python/Screens/ChannelSelection.py:101
msgid "remove from parental protection"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:106
+#: ../lib/python/Screens/ChannelSelection.py:115
msgid "remove new found flag"
msgstr ""
@@ -2503,7 +2653,7 @@ msgstr ""
msgid "repeated"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1470
msgid "right"
msgstr ""
@@ -2541,14 +2691,14 @@ msgstr ""
msgid "second"
msgstr ""
-#: ../lib/python/Components/NimManager.py:680
+#: ../lib/python/Components/NimManager.py:746
msgid "second cable of motorized LNB"
msgstr ""
#: ../lib/python/Components/UsageConfig.py:12
#: ../lib/python/Components/UsageConfig.py:13
#: ../lib/python/Components/UsageConfig.py:14
-#: ../lib/python/Components/UsageConfig.py:18
+#: ../lib/python/Components/UsageConfig.py:19
msgid "seconds"
msgstr ""
@@ -2557,45 +2707,51 @@ msgid "seconds."
msgstr ""
#: ../lib/python/Screens/ParentalControlSetup.py:94
+#: ../lib/python/Screens/ParentalControlSetup.py:121
msgid "service pin"
msgstr ""
#: ../lib/python/Screens/ParentalControlSetup.py:96
+#: ../lib/python/Screens/ParentalControlSetup.py:114
msgid "setup pin"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:406
+#: ../lib/python/Screens/InfoBarGenerics.py:420
msgid "show EPG..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:123
+#: ../lib/python/Screens/ChannelSelection.py:132
msgid "show alternatives"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:368
+#: ../lib/python/Screens/InfoBarGenerics.py:382
msgid "show event details"
msgstr ""
-#: ../SleepTimer.py:55
+#: ../lib/python/Screens/ChannelSelection.py:92
+msgid "show transponder info"
+msgstr ""
+
+#: ../SleepTimer.py:53
msgid "shutdown"
msgstr ""
-#: ../lib/python/Components/NimManager.py:671
-#: ../lib/python/Components/NimManager.py:681
+#: ../lib/python/Components/NimManager.py:737
+#: ../lib/python/Components/NimManager.py:747
#: ../lib/python/Components/ParentalControl.py:13
#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:19
msgid "simple"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:605
+#: ../lib/python/Screens/InfoBarGenerics.py:663
msgid "skip backward"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:602
+#: ../lib/python/Screens/InfoBarGenerics.py:660
msgid "skip forward"
msgstr ""
-#: ../SleepTimer.py:55
+#: ../SleepTimer.py:53
msgid "standby"
msgstr ""
@@ -2604,19 +2760,19 @@ msgstr ""
msgid "start cut here"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:920
+#: ../lib/python/Screens/InfoBarGenerics.py:990
msgid "start timeshift"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1470
msgid "stereo"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1400
msgid "stop recording"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:921
+#: ../lib/python/Screens/InfoBarGenerics.py:991
msgid "stop timeshift"
msgstr ""
@@ -2636,7 +2792,7 @@ msgstr ""
msgid "this recording"
msgstr ""
-#: ../lib/python/Components/ParentalControl.py:80
+#: ../lib/python/Components/ParentalControl.py:81
msgid "this service is protected by a parental control pin"
msgstr ""
@@ -2652,11 +2808,11 @@ msgstr ""
msgid "user defined"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:362
+#: ../lib/python/Screens/ScanSetup.py:365
msgid "vertical"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1055
+#: ../lib/python/Screens/InfoBarGenerics.py:1125
msgid "view extensions..."
msgstr ""
@@ -2680,16 +2836,16 @@ msgstr ""
msgid "whitelist"
msgstr ""
-#: ../lib/python/Screens/MessageBox.py:46
-#: ../lib/python/Screens/ScanSetup.py:341
-#: ../lib/python/Screens/ScanSetup.py:586
-#: ../lib/python/Screens/SleepTimerEdit.py:61
+#: ../lib/python/Screens/MessageBox.py:39
+#: ../lib/python/Screens/ScanSetup.py:344
+#: ../lib/python/Screens/ScanSetup.py:589
+#: ../lib/python/Screens/SleepTimerEdit.py:63
#: ../lib/python/Components/config.py:277
msgid "yes"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:341
-#: ../lib/python/Screens/ScanSetup.py:586
+#: ../lib/python/Screens/ScanSetup.py:344
+#: ../lib/python/Screens/ScanSetup.py:589
msgid "yes (keep feeds)"
msgstr ""
@@ -2760,7 +2916,7 @@ msgid "Where do you want to backup your settings?"
msgstr ""
#: ../data/
-msgid "Service Scan"
+msgid "1"
msgstr ""
#: ../data/
@@ -2790,10 +2946,18 @@ msgid ""
msgstr ""
#: ../data/
+msgid "4"
+msgstr ""
+
+#: ../data/
msgid "Show positioner movement"
msgstr ""
#: ../data/
+msgid "8"
+msgstr ""
+
+#: ../data/
msgid "Tuner Slot"
msgstr ""
@@ -2858,7 +3022,7 @@ msgid ""
msgstr ""
#: ../data/
-msgid "Mute"
+msgid "Yes, do another manual scan now"
msgstr ""
#: ../data/
@@ -2866,6 +3030,10 @@ msgid "Service Searching"
msgstr ""
#: ../data/
+msgid "Mute"
+msgstr ""
+
+#: ../data/
msgid ""
"Welcome to the Image upgrade wizard. The wizard will assist you in upgrading "
"the firmware of your Dreambox by providing a backup facility for your "
@@ -2896,15 +3064,15 @@ msgid "Dish"
msgstr ""
#: ../data/
-msgid "Margin after record"
+msgid "Index"
msgstr ""
#: ../data/
-msgid "#ffffffff"
+msgid "Margin after record"
msgstr ""
#: ../data/
-msgid "System"
+msgid "#ffffffff"
msgstr ""
#: ../data/
@@ -2926,7 +3094,11 @@ msgid "Manual Scan"
msgstr ""
#: ../data/
-msgid "Timer Edit"
+msgid ""
+"Welcome.\n"
+"\n"
+"This start wizard will guide you through the basic setup of your Dreambox.\n"
+"Press the OK button on your remote control to move to the next step."
msgstr ""
#: ../data/
@@ -2942,10 +3114,6 @@ msgid "Network..."
msgstr ""
#: ../data/
-msgid "Tuner configuration"
-msgstr ""
-
-#: ../data/
msgid "select Slot"
msgstr ""
@@ -2958,10 +3126,22 @@ msgid "Standby / Restart"
msgstr ""
#: ../data/
+msgid "3"
+msgstr ""
+
+#: ../data/
+msgid "Service Scan"
+msgstr ""
+
+#: ../data/
msgid "Contrast"
msgstr ""
#: ../data/
+msgid "7"
+msgstr ""
+
+#: ../data/
msgid "EPG Selection"
msgstr ""
@@ -2986,10 +3166,6 @@ msgid "Parental control services Editor"
msgstr ""
#: ../data/
-msgid "Yes, do another manual scan now"
-msgstr ""
-
-#: ../data/
msgid "Activate network settings"
msgstr ""
@@ -3042,7 +3218,7 @@ msgid "Timeshift"
msgstr ""
#: ../data/
-msgid "Reception Settings"
+msgid "Show infobar on event change"
msgstr ""
#: ../data/
@@ -3058,11 +3234,15 @@ msgid "Parental control setup"
msgstr ""
#: ../data/
-msgid "Timezone"
+msgid "Device Setup..."
msgstr ""
#: ../data/
-msgid "Message"
+msgid "Select Network Adapter"
+msgstr ""
+
+#: ../data/
+msgid "Timezone"
msgstr ""
#: ../data/
@@ -3144,6 +3324,10 @@ msgid ""
msgstr ""
#: ../data/
+msgid "0"
+msgstr ""
+
+#: ../data/
msgid "Network Setup"
msgstr ""
@@ -3156,6 +3340,10 @@ msgid "Timer log"
msgstr ""
#: ../data/
+msgid "2"
+msgstr ""
+
+#: ../data/
msgid ""
"Your backup succeeded. We will now continue to explain the further upgrade "
"process."
@@ -3190,10 +3378,18 @@ msgid "Modulator"
msgstr ""
#: ../data/
+msgid "Reception Settings"
+msgstr ""
+
+#: ../data/
msgid "Eventview"
msgstr ""
#: ../data/
+msgid "6"
+msgstr ""
+
+#: ../data/
msgid "Margin before record (minutes)"
msgstr ""
@@ -3223,6 +3419,10 @@ msgid "Media player"
msgstr ""
#: ../data/
+msgid "Nameserver"
+msgstr ""
+
+#: ../data/
msgid "Timer sanity error"
msgstr ""
@@ -3243,6 +3443,10 @@ msgid "WSS on 4:3"
msgstr ""
#: ../data/
+msgid "Tuner configuration"
+msgstr ""
+
+#: ../data/
msgid "Choose bouquet"
msgstr ""
@@ -3303,6 +3507,14 @@ msgid "Subtitle selection"
msgstr ""
#: ../data/
+msgid "#003258"
+msgstr ""
+
+#: ../data/
+msgid "Nameserver Setup"
+msgstr ""
+
+#: ../data/
msgid "Aspect Ratio"
msgstr ""
@@ -3339,19 +3551,27 @@ msgid "Volume"
msgstr ""
#: ../data/
+msgid "5"
+msgstr ""
+
+#: ../data/
msgid "#33294a6b"
msgstr ""
#: ../data/
+msgid "9"
+msgstr ""
+
+#: ../data/
msgid "Alpha"
msgstr ""
#: ../data/
-msgid ""
-"Welcome.\n"
-"\n"
-"This start wizard will guide you through the basic setup of your Dreambox.\n"
-"Press the OK button on your remote control to move to the next step."
+msgid "Timer Edit"
+msgstr ""
+
+#: ../data/
+msgid "#77ffffff"
msgstr ""
#: ../data/
@@ -3371,6 +3591,10 @@ msgid "config menu"
msgstr ""
#: ../data/
+msgid "Message"
+msgstr ""
+
+#: ../data/
msgid "Finetune"
msgstr ""
@@ -3443,3 +3667,7 @@ msgstr ""
#: ../data/
msgid "Do you want to do another manual service scan?"
msgstr ""
+
+#: ../data/
+msgid "Nameserver Setup..."
+msgstr ""