aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-11-12 23:23:21 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-11-12 23:23:21 +0000
commita304ed63ef86c02d1c74b342b619edff642a164b (patch)
treeb823c1f26ef5b8e26186819f3a2697e9e18f73bd
parentf3382e42e8c28c692f50ddee5fedcae55652edeb (diff)
downloadenigma2-a304ed63ef86c02d1c74b342b619edff642a164b.tar.gz
enigma2-a304ed63ef86c02d1c74b342b619edff642a164b.zip
adding a sleep timer
-rw-r--r--Makefile.am2
-rw-r--r--SleepTimer.py75
-rw-r--r--data/keymap.xml22
-rw-r--r--data/skin_default.xml15
-rw-r--r--lib/python/Screens/Makefile.am3
-rw-r--r--lib/python/Screens/SleepTimerEdit.py96
-rwxr-xr-xpo/ar.po50
-rwxr-xr-xpo/ca.po55
-rwxr-xr-xpo/cs.po53
-rwxr-xr-xpo/da.po53
-rw-r--r--po/de.po50
-rw-r--r--po/en.po50
-rw-r--r--po/enigma2.pot599
-rw-r--r--po/es.po50
-rwxr-xr-xpo/fi.po50
-rw-r--r--po/fr.po50
-rwxr-xr-xpo/is.po50
-rwxr-xr-xpo/it.po50
-rwxr-xr-xpo/nl.po53
-rwxr-xr-xpo/no.po50
-rwxr-xr-xpo/sv.po53
-rwxr-xr-xpo/tr.po50
22 files changed, 1316 insertions, 263 deletions
diff --git a/Makefile.am b/Makefile.am
index d87e63f3..fd1a7c5f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,6 +5,6 @@ SUBDIRS = lib main data po tools
installdir = $(LIBDIR)/enigma2/python
install_PYTHON = \
- Navigation.py NavigationInstance.py RecordTimer.py ServiceReference.py \
+ Navigation.py NavigationInstance.py RecordTimer.py SleepTimer.py ServiceReference.py \
keyids.py keymapparser.py mytest.py skin.py timer.py tools.py GlobalActions.py \
e2reactor.py
diff --git a/SleepTimer.py b/SleepTimer.py
new file mode 100644
index 00000000..ea18ceed
--- /dev/null
+++ b/SleepTimer.py
@@ -0,0 +1,75 @@
+import timer
+import time
+import math
+
+from enigma import quitMainloop
+
+from Tools import Notifications
+
+from Components.config import config, ConfigYesNo, ConfigSelection, ConfigSubsection
+
+from Screens.MessageBox import MessageBox
+from Screens.Standby import Standby
+
+class SleepTimerEntry(timer.TimerEntry):
+ def __init__(self, begin):
+ timer.TimerEntry.__init__(self, int(begin), int(begin))
+
+ self.prepare_time = 0
+
+ def getNextActivation(self):
+ return self.begin
+
+ def activate(self):
+ if self.state == self.StateRunning:
+ if config.SleepTimer.action.value == "shutdown":
+ if config.SleepTimer.ask.value:
+ Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer want's to shut down") + "\n" + _("your Dreambox. Shutdown now?"), timeout = 20)
+ else:
+ self.shutdown(True)
+ elif config.SleepTimer.action.value == "standby":
+ if config.SleepTimer.ask.value:
+ Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer want's to set your") + "\n" + _("Dreambox to standby. Do that now?"), timeout = 20)
+ else:
+ self.standby(True)
+
+ return True
+
+ def shouldSkip(self):
+ return False
+
+ def shutdown(self, answer):
+ if answer is not None:
+ if answer:
+ quitMainloop(1)
+
+ def standby(self, answer):
+ if answer is not None:
+ if answer:
+ Notifications.AddNotification(Standby, self)
+
+class SleepTimer(timer.Timer):
+ def __init__(self):
+ config.SleepTimer = ConfigSubsection()
+ config.SleepTimer.ask = ConfigYesNo(default = True)
+ config.SleepTimer.action = ConfigSelection(default = "shutdown", choices = [("shutdown", _("shutdown")), ("standby", _("standby"))])
+
+ timer.Timer.__init__(self)
+ self.defaultTime = 30
+
+ def setSleepTime(self, sleeptime):
+ self.clear()
+ self.addTimerEntry(SleepTimerEntry(time.time() + 60 * sleeptime))
+
+ def clear(self):
+ self.timer_list = []
+
+ def getCurrentSleepTime(self):
+ if (self.getNextRecordingTime() == -1):
+ return self.defaultTime
+ return int(math.ceil((self.getNextRecordingTime() - time.time()) / 60))
+
+ def isActive(self):
+ return len(self.timer_list) > 0
+
+ \ No newline at end of file
diff --git a/data/keymap.xml b/data/keymap.xml
index 1d60a679..0979b7a3 100644
--- a/data/keymap.xml
+++ b/data/keymap.xml
@@ -378,6 +378,28 @@
<map context="StandbyActions">
<key id="KEY_POWER" mapto="power" flags="m" />
</map>
+
+ <map context="SleepTimerEditorActions">
+ <key id="KEY_OK" mapto="select" flags="m" />
+ <key id="KEY_EXIT" mapto="exit" flags="m" />
+ <key id="KEY_1" mapto="1" flags="m" />
+ <key id="KEY_2" mapto="2" flags="m" />
+ <key id="KEY_3" mapto="3" flags="m" />
+ <key id="KEY_4" mapto="4" flags="m" />
+ <key id="KEY_5" mapto="5" flags="m" />
+ <key id="KEY_6" mapto="6" flags="m" />
+ <key id="KEY_7" mapto="7" flags="m" />
+ <key id="KEY_8" mapto="8" flags="m" />
+ <key id="KEY_9" mapto="9" flags="m" />
+ <key id="KEY_0" mapto="0" flags="m" />
+ <key id="KEY_LEFT" mapto="selectLeft" flags="mr" />
+ <key id="KEY_RIGHT" mapto="selectRight" flags="mr" />
+ <key id="KEY_RED" mapto="disableTimer" flags="mr" />
+ <key id="KEY_YELLOW" mapto="toggleAsk" flags="mr" />
+ <key id="KEY_GREEN" mapto="toggleAction" flags="mr" />
+ <!--key id="KEY_BLUE" mapto="settings" flags="mr" /-->
+
+ </map>
<map context="CutListEditorActions">
<key id="KEY_NEXT" mapto="setIn" flags="m" />
<key id="KEY_PREVIOUS" mapto="setOut" flags="m" />
diff --git a/data/skin_default.xml b/data/skin_default.xml
index 2dbea2db..97e67400 100644
--- a/data/skin_default.xml
+++ b/data/skin_default.xml
@@ -346,6 +346,21 @@
<widget name="input" position="200,100" size="550,25" font="Regular;50" />
</screen>
+ <screen name="SleepTimerEdit" position="100,100" size="550,160" title="Sleep Timer" >
+ <widget name="red" pixmap="key_red-fs8.png" position="10,50" zPosition="10" size="28,20" transparent="1" alphatest="on"/>
+ <widget name="green" pixmap="key_green-fs8.png" position="10,90" zPosition="10" size="28,20" transparent="1" alphatest="on"/>
+ <widget name="yellow" pixmap="key_yellow-fs8.png" position="10,130" zPosition="10" size="28,20" transparent="1" alphatest="on"/>
+ <widget name="blue" pixmap="key_blue-fs8.png" position="10,170" zPosition="10" size="28,20" transparent="1" alphatest="on"/>
+
+ <widget name="red_text" position="50,50" size="340,40" font="Regular;21" />
+ <widget name="green_text" position="50,90" size="340,40" font="Regular;21" />
+ <widget name="yellow_text" position="50,130" size="340,40" font="Regular;21" />
+ <widget name="blue_text" position="50,170" size="340,40" font="Regular;21" />
+
+ <widget name="pretext" position="0,10" size="250,25" font="Regular;20" />
+ <widget name="input" position="260,10" size="50,25" font="Regular;20" />
+ <widget name="aftertext" position="310,10" size="100,25" font="Regular;20" />
+ </screen>
<screen name="ParentalControlChangePin" position="100,100" size="550,160" title="Change pin code" >
<widget name="config" position="20,10" size="460,350" scrollbarMode="showOnDemand" />
</screen>
diff --git a/lib/python/Screens/Makefile.am b/lib/python/Screens/Makefile.am
index 455209fc..b4e28e3c 100644
--- a/lib/python/Screens/Makefile.am
+++ b/lib/python/Screens/Makefile.am
@@ -11,4 +11,5 @@ install_PYTHON = \
TutorialWizard.py PluginBrowser.py MinuteInput.py Scart.py PVRState.py \
Console.py InputBox.py ChoiceBox.py SimpleSummary.py ImageWizard.py \
MediaPlayer.py TimerSelection.py PictureInPicture.py TimeDateInput.py \
- SubtitleDisplay.py SubservicesQuickzap.py ParentalControlSetup.py NumericalTextInputHelpDialog.py
+ SubtitleDisplay.py SubservicesQuickzap.py ParentalControlSetup.py NumericalTextInputHelpDialog.py \
+ SleepTimerEdit.py
diff --git a/lib/python/Screens/SleepTimerEdit.py b/lib/python/Screens/SleepTimerEdit.py
new file mode 100644
index 00000000..ac500665
--- /dev/null
+++ b/lib/python/Screens/SleepTimerEdit.py
@@ -0,0 +1,96 @@
+from Screens.Screen import Screen
+from Screens.MessageBox import MessageBox
+from Components.ActionMap import NumberActionMap
+from Components.Input import Input
+from Components.Label import Label
+from Components.Pixmap import Pixmap
+from Components.config import config
+from SleepTimer import SleepTimerEntry
+import time
+
+class SleepTimerEdit(Screen):
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ self["red"] = Pixmap()
+ self["green"] = Pixmap()
+ self["yellow"] = Pixmap()
+ self["blue"] = Pixmap()
+ self["red_text"] = Label()
+ self["green_text"] = Label()
+ self["yellow_text"] = Label()
+ self["blue_text"] = Label()
+ self.updateColors()
+
+ self["pretext"] = Label(_("Shutdown Dreambox after"))
+ self["input"] = Input(text = str(self.session.nav.SleepTimer.getCurrentSleepTime()), maxSize = False, type = Input.NUMBER)
+ self["aftertext"] = Label(_("minutes"))
+
+ self["actions"] = NumberActionMap(["SleepTimerEditorActions"],
+ {
+ "exit": self.close,
+ "select": self.select,
+ "1": self.keyNumberGlobal,
+ "2": self.keyNumberGlobal,
+ "3": self.keyNumberGlobal,
+ "4": self.keyNumberGlobal,
+ "5": self.keyNumberGlobal,
+ "6": self.keyNumberGlobal,
+ "7": self.keyNumberGlobal,
+ "8": self.keyNumberGlobal,
+ "9": self.keyNumberGlobal,
+ "0": self.keyNumberGlobal,
+ "selectLeft": self.selectLeft,
+ "selectRight": self.selectRight,
+ "disableTimer": self.disableTimer,
+ "toggleAction": self.toggleAction,
+ "toggleAsk": self.toggleAsk
+ }, -1)
+
+ def updateColors(self):
+ if self.session.nav.SleepTimer.isActive():
+ self["red_text"].setText(_("Timer status:") + " " + _("Enabled"))
+ else:
+ self["red_text"].setText(_("Timer status:") + " " + _("Disabled"))
+ if config.SleepTimer.action.value == "shutdown":
+ self["green_text"].setText(_("Sleep timer action:") + " " + _("Deep Standby"))
+ elif config.SleepTimer.action.value == "standby":
+ self["green_text"].setText(_("Sleep timer action:") + " " + _("Standby"))
+
+ if config.SleepTimer.ask.value:
+ self["yellow_text"].setText(_("Ask before shutdown:") + " " + _("yes"))
+ else:
+ self["yellow_text"].setText(_("Ask before shutdown:") + " " + _("no"))
+ self["blue_text"].setText(_("Settings"))
+
+
+ def select(self):
+ self.session.nav.SleepTimer.setSleepTime(int(self["input"].getText()))
+ self.session.openWithCallback(self.close, MessageBox, _("The sleep timer has been acitvated."), MessageBox.TYPE_INFO)
+
+ def keyNumberGlobal(self, number):
+ self["input"].number(number)
+
+ def selectLeft(self):
+ self["input"].left()
+
+ def selectRight(self):
+ self["input"].right()
+
+ def disableTimer(self):
+ if self.session.nav.SleepTimer.isActive():
+ self.session.nav.SleepTimer.clear()
+ else:
+ self.session.nav.SleepTimer.setSleepTime(int(self["input"].getText()))
+ self.updateColors()
+
+ def toggleAction(self):
+ if config.SleepTimer.action.value == "shutdown":
+ config.SleepTimer.action.value = "standby"
+ elif config.SleepTimer.action.value == "standby":
+ config.SleepTimer.action.value = "shutdown"
+ self.updateColors()
+
+ def toggleAsk(self):
+ config.SleepTimer.ask.value = not config.SleepTimer.ask.value
+ self.updateColors() \ No newline at end of file
diff --git a/po/ar.po b/po/ar.po
index feac1c7d..f459f1aa 100755
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-01-10 01:17+0300\n"
"Last-Translator: hazem <moustafagamal@hotmail.com>\n"
"Language-Team: Arabic <moustafagamal@hotmail.com>\n"
@@ -151,6 +151,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -235,6 +241,9 @@ msgstr ""
msgid "Artist:"
msgstr ""
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr ""
@@ -487,6 +496,9 @@ msgstr ""
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -543,9 +555,6 @@ msgstr ""
"هل تريد تحديث الدريم بوكس\n"
"إضغط OK ثم إنتظر!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "هل تريد مشاهده الشرح ؟"
@@ -561,6 +570,9 @@ msgstr ""
msgid "Downloading plugin information. Please wait..."
msgstr ""
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr ""
@@ -592,6 +604,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "النهايه"
@@ -1187,9 +1202,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1369,6 +1381,9 @@ msgstr ""
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr ""
@@ -1387,6 +1402,12 @@ msgstr ""
msgid "Single transponder"
msgstr ""
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr ""
@@ -1527,6 +1548,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1582,6 +1606,9 @@ msgstr ""
msgid "Timer selection"
msgstr ""
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2231,6 +2258,9 @@ msgstr "إظهار دليل البرامج الالكترونى"
msgid "show event details"
msgstr ""
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2240,6 +2270,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2306,6 +2339,9 @@ msgstr "نعـم"
msgid "yes (keep feeds)"
msgstr ""
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index cc97387b..1417b7bb 100755
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-11-02 17:40+0100\n"
"Last-Translator: Oriol Pellicer i Sabrià <oriol@elsud.org>\n"
"Language-Team: none\n"
@@ -165,6 +165,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -251,6 +257,9 @@ msgstr "Àrab"
msgid "Artist:"
msgstr "Artista:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Relació d'aspecte"
@@ -504,6 +513,9 @@ msgstr "Desactivar PiP"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -568,10 +580,6 @@ msgstr ""
"Vols actualitzar la Dreambox?\n"
"Després de prémer OK, espera!"
-#, fuzzy
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Vols veure un manual de \"cutlist\"?"
-
msgid "Do you want to view a tutorial?"
msgstr "Vols veure un tutorial?"
@@ -587,6 +595,9 @@ msgstr "Plugins descarregables"
msgid "Downloading plugin information. Please wait..."
msgstr "Descarregant informació del plugin. Espera..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Holandès"
@@ -618,6 +629,9 @@ msgstr "Activar llistes múltiples"
msgid "Enable parental control"
msgstr "Activar control parental"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Fi"
@@ -1221,9 +1235,6 @@ msgstr "Sortida RF"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Sortir sense guardar els canvis?"
@@ -1403,6 +1414,9 @@ msgstr "Reproductor de ràdio..."
msgid "Show the tv player..."
msgstr "Mostrar el reproductor de tv..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Similar"
@@ -1421,6 +1435,12 @@ msgstr "Satèl·lit únic"
msgid "Single transponder"
msgstr "Transponedor únic"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1567,6 +1587,9 @@ msgstr "El pin és incorrecte"
msgid "The pin codes you entered are different."
msgstr "Els pins entrats són diferents"
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1624,6 +1647,9 @@ msgstr "Error de programació"
msgid "Timer selection"
msgstr "Selecció de gravació"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Pausa"
@@ -2307,6 +2333,9 @@ msgstr "mostrar EPG..."
msgid "show event details"
msgstr "mostrar detalls del programa"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "simple"
@@ -2316,6 +2345,9 @@ msgstr "saltar endarrere"
msgid "skip forward"
msgstr "saltar endavant"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2382,6 +2414,9 @@ msgstr "si"
msgid "yes (keep feeds)"
msgstr "si (mantenir feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zappejar"
@@ -2391,6 +2426,10 @@ msgstr "zappejat"
#~ msgid "Disable subtitles"
#~ msgstr "Deshabilitar subtítols"
+#, fuzzy
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Vols veure un manual de \"cutlist\"?"
+
#~ msgid "Satconfig"
#~ msgstr "Configuració satèl·lit"
diff --git a/po/cs.po b/po/cs.po
index 3e50133f..706b2f8a 100755
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-11-05 17:19+0100\n"
"Last-Translator: ws79 <ws79@centrum.cz>\n"
"Language-Team: \n"
@@ -154,6 +154,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -240,6 +246,9 @@ msgstr "Arabsky"
msgid "Artist:"
msgstr "Herec:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Poměr"
@@ -492,6 +501,9 @@ msgstr "Vypnout obraz v obraze"
msgid "Disable Subtitles"
msgstr "Zakázat titulky"
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -556,9 +568,6 @@ msgstr ""
"Chcete updatovat váš Dreambox?\n"
"Po stisku OK počkejte!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Chcete zobrazit "
-
msgid "Do you want to view a tutorial?"
msgstr "Chcete zobrazit tutorial?"
@@ -574,6 +583,9 @@ msgstr "Stažitelné pluginy"
msgid "Downloading plugin information. Please wait..."
msgstr "Stahuji informace o pluginu. Prosím počkejte..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Holandsky"
@@ -605,6 +617,9 @@ msgstr "Povolit vícenásobné bukety"
msgid "Enable parental control"
msgstr "Povolit rodičkovský zámek"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Konec"
@@ -1206,9 +1221,6 @@ msgstr "RF výstup"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Opravdu uzavřít bez uložení nastavení?"
@@ -1389,6 +1401,9 @@ msgstr "Zobrazit přehrávač rádií"
msgid "Show the tv player..."
msgstr "Zobrazit TV..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Podobné"
@@ -1407,6 +1422,12 @@ msgstr "Jediný satelit"
msgid "Single transponder"
msgstr "Jediný transpodér"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1552,6 +1573,9 @@ msgstr "Zadaný PIN je špatný."
msgid "The pin codes you entered are different."
msgstr "Zadané PINy se neshodují."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr "Průvodce může uložit vaše nastavení. Chcete nyní provést zálohu?"
@@ -1607,6 +1631,9 @@ msgstr "Nelogické časování"
msgid "Timer selection"
msgstr "Sekce časovače"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Timeshift"
@@ -2282,6 +2309,9 @@ msgstr "Zobrazit EPG..."
msgid "show event details"
msgstr "zobraz podrobnosti události"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "jednoduché"
@@ -2291,6 +2321,9 @@ msgstr "Posun zpět"
msgid "skip forward"
msgstr "Posun vpřed"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2357,6 +2390,9 @@ msgstr "ano"
msgid "yes (keep feeds)"
msgstr "ano (uchovat feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "přepnout"
@@ -2372,6 +2408,9 @@ msgstr "přepnutý"
#~ msgid "Default"
#~ msgstr "Defaultní"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Chcete zobrazit "
+
#~ msgid "Equal to Socket A"
#~ msgstr "Rovno slotu A"
diff --git a/po/da.po b/po/da.po
index d91541b6..d4cc364c 100755
--- a/po/da.po
+++ b/po/da.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-11-05 13:43+0100\n"
"Last-Translator: Gaj1 <gaj1@satandream.com>\n"
"Language-Team: The Polar Team <Gaj@satandream.com>\n"
@@ -154,6 +154,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -240,6 +246,9 @@ msgstr "Arabisk"
msgid "Artist:"
msgstr "Artist:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Billed Format"
@@ -492,6 +501,9 @@ msgstr "Afbryd Billed i Billed"
msgid "Disable Subtitles"
msgstr "Stoppe Undertekster"
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -556,9 +568,6 @@ msgstr ""
"Vil du opdatere din Dreambox?\n"
"Efter tryk på OK, vent venligst!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Vil du se en cutlist oversigt?"
-
msgid "Do you want to view a tutorial?"
msgstr "Vil du have en gennemgang ?"
@@ -574,6 +583,9 @@ msgstr "Plugins der kan downloades"
msgid "Downloading plugin information. Please wait..."
msgstr "Downloader plugin informationer. Vent venligst..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Hollandsk"
@@ -605,6 +617,9 @@ msgstr "Tilføj multi pakker"
msgid "Enable parental control"
msgstr "Aktivere forældre kontrol"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Slut"
@@ -1207,9 +1222,6 @@ msgstr "RF Udgang"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Vil du virkelig lukke uden at gemme settings?"
@@ -1389,6 +1401,9 @@ msgstr "Vis radio afspilleren..."
msgid "Show the tv player..."
msgstr "Vis TV afspiller..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Samme"
@@ -1407,6 +1422,12 @@ msgstr "Enkelt satellit"
msgid "Single transponder"
msgstr "Enkelt transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1552,6 +1573,9 @@ msgstr "Din indtastede pin kode er forkert."
msgid "The pin codes you entered are different."
msgstr "De indtastede pin koder er forskellige."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1609,6 +1633,9 @@ msgstr "Timer sanity fejl"
msgid "Timer selection"
msgstr "Timer valg"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Tidsskift"
@@ -2285,6 +2312,9 @@ msgstr "Vis EPG..."
msgid "show event details"
msgstr "Vis program detaljer"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "Enkel"
@@ -2294,6 +2324,9 @@ msgstr "Drop tilbage"
msgid "skip forward"
msgstr "Drop fremad"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2360,6 +2393,9 @@ msgstr "Ja"
msgid "yes (keep feeds)"
msgstr "Ja (behold feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zap"
@@ -2372,6 +2408,9 @@ msgstr "zappet"
#~ msgid "Do you want to enable the parental control feature or your dreambox?"
#~ msgstr "Vil du aktivere Forældre Kontrol muligheden på din DreamBox?"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Vil du se en cutlist oversigt?"
+
#~ msgid "Satconfig"
#~ msgstr "Satkonfiguration"
diff --git a/po/de.po b/po/de.po
index 2522546c..f0e71551 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: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-10-20 16:34+0100\n"
"Last-Translator: Felix Domke <tmbinc@elitedvb.net>\n"
"Language-Team: none\n"
@@ -161,6 +161,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -248,6 +254,9 @@ msgstr "Arabisch"
msgid "Artist:"
msgstr "Künstler:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Seitenverhältnis"
@@ -501,6 +510,9 @@ msgstr "Bild in Bild ausschalten"
msgid "Disable Subtitles"
msgstr "Untertitel abschalten"
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -565,9 +577,6 @@ msgstr ""
"Möchten Sie Ihre Dreambox updaten?\n"
"Nach dem Druck auf OK bitte warten!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Wollen Sie ein Tutorial sehen?"
@@ -583,6 +592,9 @@ msgstr "Herunterladbare Erweiterungen"
msgid "Downloading plugin information. Please wait..."
msgstr "Lade Plugin-Informationen herunter. Bitte warten..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Holländisch"
@@ -614,6 +626,9 @@ msgstr "Mehrere Bouquets erlauben"
msgid "Enable parental control"
msgstr "Jugendschutz anschalten"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Ende"
@@ -1219,9 +1234,6 @@ msgstr "RF Ausgang"
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Änderungen gehen verloren. Wirklich schließen?"
@@ -1403,6 +1415,9 @@ msgstr "Radio-Wiedergabemodus..."
msgid "Show the tv player..."
msgstr "TV-Wiedergabemodus..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Ähnlich"
@@ -1421,6 +1436,12 @@ msgstr "Einzelnen Satelliten"
msgid "Single transponder"
msgstr "Einzelnen Transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1568,6 +1589,9 @@ msgstr "Der eingegebene Pincode ist falsch"
msgid "The pin codes you entered are different."
msgstr "Die Pincodes unterscheiden sich."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1625,6 +1649,9 @@ msgstr "Fehler bei Timerprüfung"
msgid "Timer selection"
msgstr "Timer Liste"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2310,6 +2337,9 @@ msgstr "Zeige EPG..."
msgid "show event details"
msgstr "Sendungs-Details anzeigen"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "einfach"
@@ -2319,6 +2349,9 @@ msgstr "Rückwärts spulen"
msgid "skip forward"
msgstr "Vorwärts spulen"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2385,6 +2418,9 @@ msgstr "ja"
msgid "yes (keep feeds)"
msgstr "ja (Feeds behalten)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "Umschalten"
diff --git a/po/en.po b/po/en.po
index 69719e0b..afede389 100644
--- a/po/en.po
+++ b/po/en.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2005-11-17 20:53+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -148,6 +148,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -230,6 +236,9 @@ msgstr ""
msgid "Artist:"
msgstr ""
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr ""
@@ -482,6 +491,9 @@ msgstr ""
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -536,9 +548,6 @@ msgid ""
"After pressing OK, please wait!"
msgstr ""
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr ""
@@ -554,6 +563,9 @@ msgstr ""
msgid "Downloading plugin information. Please wait..."
msgstr ""
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr ""
@@ -585,6 +597,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr ""
@@ -1178,9 +1193,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1360,6 +1372,9 @@ msgstr ""
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr ""
@@ -1378,6 +1393,12 @@ msgstr ""
msgid "Single transponder"
msgstr ""
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr ""
@@ -1518,6 +1539,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1573,6 +1597,9 @@ msgstr ""
msgid "Timer selection"
msgstr ""
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2204,6 +2231,9 @@ msgstr ""
msgid "show event details"
msgstr ""
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2213,6 +2243,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2279,6 +2312,9 @@ msgstr ""
msgid "yes (keep feeds)"
msgstr ""
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr ""
diff --git a/po/enigma2.pot b/po/enigma2.pot
index 1e377bab..52950b3f 100644
--- a/po/enigma2.pot
+++ b/po/enigma2.pot
@@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-19 15:17+0200\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\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"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208
@@ -130,8 +130,8 @@ msgstr ""
msgid "<unknown>"
msgstr ""
-#: ../lib/python/Screens/Menu.py:126 ../lib/python/Screens/Menu.py:166
-#: ../lib/python/Screens/Menu.py:169 ../lib/python/Screens/Setup.py:118
+#: ../lib/python/Screens/Menu.py:125 ../lib/python/Screens/Menu.py:165
+#: ../lib/python/Screens/Menu.py:168 ../lib/python/Screens/Setup.py:118
msgid "??"
msgstr ""
@@ -139,19 +139,33 @@ msgstr ""
msgid "A"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
msgid ""
"A recording is currently running.\n"
"What do you want to do?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:549
msgid ""
"A recording is currently running. Please stop the recording before trying to "
"configure the positioner."
msgstr ""
-#: ../RecordTimer.py:163
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:273
+msgid ""
+"A recording is currently running. Please stop the recording before trying to "
+"start the satfinder."
+msgstr ""
+
+#: ../SleepTimer.py:32
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+#: ../SleepTimer.py:27
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
+#: ../RecordTimer.py:167
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -165,7 +179,11 @@ msgstr ""
msgid "AB"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1178
+#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:77 ../data/
+msgid "About..."
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:1169
msgid "Activate Picture in Picture"
msgstr ""
@@ -173,10 +191,22 @@ msgstr ""
msgid "Add"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:175
+msgid "Add a mark"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py:191
+msgid "Add alternative"
+msgstr ""
+
#: ../lib/python/Screens/MediaPlayer.py:389
msgid "Add files to playlist"
msgstr ""
+#: ../lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py:71
+msgid "Add service"
+msgstr ""
+
#: ../lib/python/Screens/EpgSelection.py:59
#: ../lib/python/Screens/EventView.py:32
msgid "Add timer"
@@ -199,6 +229,10 @@ msgstr ""
msgid "All"
msgstr ""
+#: ../lib/python/Screens/MovieSelection.py:90
+msgid "All..."
+msgstr ""
+
#: ../lib/python/Components/Language.py:16
msgid "Arabic"
msgstr ""
@@ -207,7 +241,12 @@ msgstr ""
msgid "Artist:"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1349
+#: ../lib/python/Screens/SleepTimerEdit.py:61
+#: ../lib/python/Screens/SleepTimerEdit.py:63
+msgid "Ask before shutdown:"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:1340
msgid "Audio Options..."
msgstr ""
@@ -281,6 +320,10 @@ msgstr ""
msgid "Cable"
msgstr ""
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:38
+msgid "Call monitoring"
+msgstr ""
+
#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimeDateInput.py:16
#: ../lib/python/Screens/TimerEntry.py:29
#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75
@@ -317,7 +360,7 @@ msgstr ""
msgid "Channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:150
+#: ../lib/python/Screens/InfoBarGenerics.py:151
msgid "Channel:"
msgstr ""
@@ -373,6 +416,22 @@ msgstr ""
msgid "Conflicting timer"
msgstr ""
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:100
+msgid "Connected to Fritz!Box!"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:97
+msgid "Connecting to Fritz!Box..."
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:110
+#, python-format
+msgid ""
+"Connection to Fritz!Box\n"
+"failed! (%s)\n"
+"retrying..."
+msgstr ""
+
#: ../lib/python/Components/Harddisk.py:132
msgid "Create movie folder failed"
msgstr ""
@@ -385,6 +444,18 @@ msgstr ""
msgid "Current version:"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:77
+msgid "Cut"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:378
+msgid "Cutlist editor..."
+msgstr ""
+
+#: ../lib/python/Components/Language.py:18
+msgid "Czech"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:358
msgid "DVB-S"
msgstr ""
@@ -393,7 +464,7 @@ msgstr ""
msgid "DVB-S2"
msgstr ""
-#: ../lib/python/Components/Language.py:18
+#: ../lib/python/Components/Language.py:19
msgid "Danish"
msgstr ""
@@ -401,6 +472,10 @@ msgstr ""
msgid "Date"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:56 ../data/
+msgid "Deep Standby"
+msgstr ""
+
#: ../lib/python/Screens/TimerEdit.py:24
msgid "Delete"
msgstr ""
@@ -449,12 +524,24 @@ msgstr ""
msgid "Disable"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1176
+#: ../lib/python/Screens/InfoBarGenerics.py:1167
msgid "Disable Picture in Picture"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1134
-msgid "Disable subtitles"
+#: ../lib/python/Screens/Subtitles.py:23
+msgid "Disable Subtitles"
+msgstr ""
+
+#: ../lib/python/Screens/SleepTimerEdit.py:54
+msgid "Disabled"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:106
+#, python-format
+msgid ""
+"Disconnected from\n"
+"Fritz!Box! (%s)\n"
+"retrying..."
msgstr ""
#: ../lib/python/Screens/PluginBrowser.py:102
@@ -486,10 +573,12 @@ msgid ""
"After pressing OK, please wait!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1621
+#: ../lib/python/Screens/InfoBarGenerics.py:1611
msgid "Do you want to resume this playback?"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:41
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:149
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:51
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:213
msgid ""
@@ -509,7 +598,11 @@ msgstr ""
msgid "Downloading plugin information. Please wait..."
msgstr ""
-#: ../lib/python/Components/Language.py:19
+#: ../SleepTimer.py:32
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
+#: ../lib/python/Components/Language.py:20
msgid "Dutch"
msgstr ""
@@ -531,7 +624,7 @@ msgstr ""
msgid "Edit services list"
msgstr ""
-#: ../lib/python/Screens/TimerEdit.py:79
+#: ../lib/python/Screens/Subtitles.py:31 ../lib/python/Screens/TimerEdit.py:79
msgid "Enable"
msgstr ""
@@ -543,6 +636,10 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:52
+msgid "Enabled"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:167
msgid "End"
msgstr ""
@@ -551,13 +648,23 @@ msgstr ""
msgid "EndTime"
msgstr ""
-#: ../lib/python/Screens/LanguageSelection.py:53
+#: ../lib/python/Screens/LanguageSelection.py:59
#: ../lib/python/Components/Language.py:14
#: ../lib/python/Components/SetupDevices.py:15
msgid "English"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:345
+#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:76
+msgid ""
+"Enigma2 Skinselector v0.5 BETA\n"
+"\n"
+"If you experience any problems please contact\n"
+"stephan@reichholf.net\n"
+"\n"
+"© 2006 - Stephan Reichholf"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:346
msgid "Enter main menu..."
msgstr ""
@@ -577,10 +684,15 @@ msgstr ""
msgid "Execution finished!!"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:177
+msgid "Exit editor"
+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:404
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:436
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140
msgid "FEC"
msgstr ""
@@ -592,11 +704,11 @@ msgstr ""
msgid "Favourites"
msgstr ""
-#: ../lib/python/Components/Language.py:20
+#: ../lib/python/Components/Language.py:21
msgid "Finnish"
msgstr ""
-#: ../lib/python/Components/Language.py:21
+#: ../lib/python/Components/Language.py:22
msgid "French"
msgstr ""
@@ -604,7 +716,8 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:229
#: ../lib/python/Screens/ScanSetup.py:240
#: ../lib/python/Screens/TimerEntry.py:139
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:432
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:136
msgid "Frequency"
msgstr ""
@@ -619,6 +732,10 @@ msgstr ""
msgid "Friday"
msgstr ""
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:39
+msgid "Fritz!Box FON IP address"
+msgstr ""
+
#: ../lib/python/Screens/About.py:23
#, python-format
msgid "Frontprocessor version: %d"
@@ -628,6 +745,12 @@ msgstr ""
msgid "Function not yet implemented"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:98
+msgid ""
+"GUI needs a restart to apply a new skin\n"
+"Do you want to Restart the GUI now?"
+msgstr ""
+
#: ../lib/python/Screens/NetworkSetup.py:32 ../data/
msgid "Gateway"
msgstr ""
@@ -645,12 +768,12 @@ msgstr ""
msgid "Getting plugin information. Please wait..."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:233
msgid "Goto 0"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:230
msgid "Goto position"
msgstr ""
@@ -667,8 +790,8 @@ msgstr ""
msgid "Hierarchy mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1315
-#: ../lib/python/Screens/InfoBarGenerics.py:1323
+#: ../lib/python/Screens/InfoBarGenerics.py:1306
+#: ../lib/python/Screens/InfoBarGenerics.py:1314
msgid "How many minutes do you want to record?"
msgstr ""
@@ -676,11 +799,11 @@ msgstr ""
msgid "IP Address"
msgstr ""
-#: ../lib/python/Components/Language.py:22
+#: ../lib/python/Components/Language.py:23
msgid "Icelandic"
msgstr ""
-#: ../lib/python/Screens/Scart.py:21
+#: ../lib/python/Screens/Scart.py:28
msgid ""
"If you see this, something is wrong with\n"
"your scart connection. Press OK to return."
@@ -690,7 +813,7 @@ msgstr ""
msgid "Image-Upgrade"
msgstr ""
-#: ../RecordTimer.py:166
+#: ../RecordTimer.py:170
msgid ""
"In order to record a timer, the TV was switched to the recording service!\n"
msgstr ""
@@ -715,18 +838,19 @@ msgstr ""
msgid "Input"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1225
+#: ../lib/python/Screens/InfoBarGenerics.py:1216
msgid "Instant Record..."
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:401
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:433
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:137
msgid "Inversion"
msgstr ""
-#: ../lib/python/Components/Language.py:23
+#: ../lib/python/Components/Language.py:24
msgid "Italian"
msgstr ""
@@ -746,7 +870,7 @@ msgstr ""
msgid "LOF/L"
msgstr ""
-#: ../lib/python/Screens/LanguageSelection.py:48 ../data/
+#: ../lib/python/Screens/LanguageSelection.py:54 ../data/
msgid "Language selection"
msgstr ""
@@ -755,23 +879,23 @@ msgstr ""
msgid "Latitude"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1389
+#: ../lib/python/Screens/InfoBarGenerics.py:1379
msgid "Left"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:225
msgid "Limit east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:224
msgid "Limit west"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:223
msgid "Limits off"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:226
msgid "Limits on"
msgstr ""
@@ -780,7 +904,20 @@ msgstr ""
msgid "Longitude"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:172
+msgid "Make this mark an 'in' point"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:173
+msgid "Make this mark an 'out' point"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:174
+msgid "Make this mark just a mark"
+msgstr ""
+
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:454
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
msgid "Manual transponder"
msgstr ""
@@ -817,15 +954,15 @@ msgstr ""
msgid "Mount failed"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1184
+#: ../lib/python/Screens/InfoBarGenerics.py:1175
msgid "Move Picture in Picture"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:216
msgid "Move east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:213
msgid "Move west"
msgstr ""
@@ -849,7 +986,8 @@ msgstr ""
msgid "N/A"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:529
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:253
msgid "NIM "
msgstr ""
@@ -894,19 +1032,23 @@ msgstr ""
msgid "No"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1335
+#: ../lib/python/Screens/InfoBarGenerics.py:1326
msgid "No HDD found or HDD not initialized!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1268
+#: ../lib/python/Screens/InfoBarGenerics.py:1259
msgid "No event info found, recording indefinitely."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:546
msgid "No positioner capable frontend found."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:270
+msgid "No satellite frontend found!!"
+msgstr ""
+
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:561
msgid "No tuner is configured for use with a diseqc positioner!"
msgstr ""
@@ -926,7 +1068,7 @@ msgstr ""
msgid "North"
msgstr ""
-#: ../lib/python/Components/Language.py:24
+#: ../lib/python/Components/Language.py:25
msgid "Norwegian"
msgstr ""
@@ -959,6 +1101,10 @@ msgstr ""
msgid "Online-Upgrade"
msgstr ""
+#: ../lib/python/Screens/MovieSelection.py:189
+msgid "Other..."
+msgstr ""
+
#: ../lib/python/Components/AVSwitch.py:92
msgid "PAL"
msgstr ""
@@ -971,6 +1117,11 @@ msgstr ""
msgid "Packet management"
msgstr ""
+#: ../lib/python/Screens/Subtitles.py:39 ../lib/python/Screens/Subtitles.py:42
+#: ../lib/python/Screens/Subtitles.py:44
+msgid "Page"
+msgstr ""
+
#: ../lib/python/Components/ParentalControl.py:80 ../data/
msgid "Parental control"
msgstr ""
@@ -979,11 +1130,11 @@ msgstr ""
msgid "Parental control type"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:48
+#: ../lib/python/Screens/InfoBar.py:47
msgid "Play recorded movies..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1099
+#: ../lib/python/Screens/InfoBarGenerics.py:1109
msgid "Please choose an extension..."
msgstr ""
@@ -1003,11 +1154,15 @@ msgstr ""
msgid "Please enter the old pin code"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:25
+msgid "Please press OK!"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:289
msgid "Please select a subservice to record..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1487
+#: ../lib/python/Screens/InfoBarGenerics.py:1477
#: ../lib/python/Screens/SubservicesQuickzap.py:97
msgid "Please select a subservice..."
msgstr ""
@@ -1019,12 +1174,13 @@ msgid ""
"Press OK to go back to the TV mode or EXIT to cancel the moving."
msgstr ""
-#: ../lib/python/Screens/MovieSelection.py:79
+#: ../lib/python/Screens/MovieSelection.py:84
msgid "Please wait... Loading list..."
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:199
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:435
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:139
msgid "Polarity"
msgstr ""
@@ -1052,19 +1208,25 @@ msgstr ""
msgid "Positioner"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172
msgid "Positioner fine movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171
msgid "Positioner movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:565
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:570
+msgid "Positioner setup"
+msgstr ""
+
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
msgid "Positioner storage"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:455
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
msgid "Predefined transponder"
msgstr ""
@@ -1105,7 +1267,7 @@ msgstr ""
msgid "Quick"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1483
+#: ../lib/python/Screens/InfoBarGenerics.py:1473
msgid "Quickzap"
msgstr ""
@@ -1113,7 +1275,7 @@ msgstr ""
msgid "RGB"
msgstr ""
-#: ../lib/python/Screens/Setup.py:145
+#: ../lib/python/Screens/Setup.py:150
msgid "Really close without saving settings?"
msgstr ""
@@ -1141,10 +1303,18 @@ msgstr ""
msgid "Remove Plugins"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:176
+msgid "Remove a mark"
+msgstr ""
+
#: ../lib/python/Screens/PluginBrowser.py:115
msgid "Remove plugins"
msgstr ""
+#: ../lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py:192
+msgid "Remove service"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:133
msgid "Repeat Type"
msgstr ""
@@ -1157,15 +1327,23 @@ msgstr ""
msgid "Reset"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:99
+msgid "Restart GUI now?"
+msgstr ""
+
#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77
#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167
msgid "Restore"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1389
+#: ../lib/python/Screens/InfoBarGenerics.py:1379
msgid "Right"
msgstr ""
+#: ../lib/python/Screens/Subtitles.py:29
+msgid "Running"
+msgstr ""
+
#: ../lib/python/Components/AVSwitch.py:77
msgid "S-Video"
msgstr ""
@@ -1180,7 +1358,8 @@ msgstr ""
#: ../lib/python/Screens/Satconfig.py:145
#: ../lib/python/Screens/ScanSetup.py:195
#: ../lib/python/Screens/ScanSetup.py:208
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:429
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:133
msgid "Satellite"
msgstr ""
@@ -1189,6 +1368,11 @@ msgstr ""
msgid "Satellites"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:282
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:287
+msgid "Satfinder"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:100
#: ../lib/python/Screens/TimerEntry.py:154
msgid "Saturday"
@@ -1199,19 +1383,23 @@ msgstr ""
msgid "Scan NIM"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:215
msgid "Search east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:214
msgid "Search west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1401
+#: ../lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py:231
+msgid "Select alternative service"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:1391
msgid "Select audio mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1390
+#: ../lib/python/Screens/InfoBarGenerics.py:1380
msgid "Select audio track"
msgstr ""
@@ -1219,6 +1407,10 @@ msgstr ""
msgid "Select channel to record from"
msgstr ""
+#: ../lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py:218
+msgid "Select reference service"
+msgstr ""
+
#: ../lib/python/Screens/Satconfig.py:116
msgid "Sequence repeat"
msgstr ""
@@ -1235,10 +1427,11 @@ msgstr ""
msgid "Services"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
msgid "Set limits"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:64
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:36
msgid "Settings"
msgstr ""
@@ -1247,14 +1440,18 @@ msgstr ""
msgid "Show services beginning with"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:49
+#: ../lib/python/Screens/InfoBar.py:48
msgid "Show the radio player..."
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:50
+#: ../lib/python/Screens/InfoBar.py:49
msgid "Show the tv player..."
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:25
+msgid "Shutdown Dreambox after"
+msgstr ""
+
#: ../lib/python/Screens/EventView.py:133
msgid "Similar"
msgstr ""
@@ -1281,6 +1478,15 @@ msgstr ""
msgid "Single transponder"
msgstr ""
+#: ../lib/python/Screens/InfoBarGenerics.py:1145 ../data/
+msgid "Sleep Timer"
+msgstr ""
+
+#: ../lib/python/Screens/SleepTimerEdit.py:56
+#: ../lib/python/Screens/SleepTimerEdit.py:58
+msgid "Sleep timer action:"
+msgstr ""
+
#: ../lib/python/Components/NimManager.py:725
msgid "Slot "
msgstr ""
@@ -1301,15 +1507,19 @@ msgstr ""
msgid "South"
msgstr ""
-#: ../lib/python/Components/Language.py:25
+#: ../lib/python/Components/Language.py:26
msgid "Spanish"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:58 ../data/
+msgid "Standby"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:160
msgid "Start"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1341
+#: ../lib/python/Screens/InfoBarGenerics.py:1332
msgid "Start recording?"
msgstr ""
@@ -1321,26 +1531,26 @@ msgstr ""
msgid "Step "
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:220
msgid "Step east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:219
msgid "Step west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1389
+#: ../lib/python/Screens/InfoBarGenerics.py:1379
msgid "Stereo"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169
+#: ../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
msgid "Stop"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:969
+#: ../lib/python/Screens/InfoBarGenerics.py:979
msgid "Stop Timeshift?"
msgstr ""
@@ -1348,7 +1558,7 @@ msgstr ""
msgid "Stop playing this movie?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:229
msgid "Store position"
msgstr ""
@@ -1356,7 +1566,7 @@ msgstr ""
msgid "Stored position"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1419
+#: ../lib/python/Screens/InfoBarGenerics.py:1409
msgid "Subservice list..."
msgstr ""
@@ -1371,25 +1581,26 @@ msgstr ""
msgid "Sunday"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1181
+#: ../lib/python/Screens/InfoBarGenerics.py:1172
msgid "Swap Services"
msgstr ""
-#: ../lib/python/Components/Language.py:26
+#: ../lib/python/Components/Language.py:27
msgid "Swedish"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1424
+#: ../lib/python/Screens/InfoBarGenerics.py:1414
msgid "Switch to next subservice"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1425
+#: ../lib/python/Screens/InfoBarGenerics.py:1415
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:402
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:434
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:138
msgid "Symbol Rate"
msgstr ""
@@ -1401,6 +1612,11 @@ msgstr ""
msgid "Terrestrial provider"
msgstr ""
+#: ../lib/python/Plugins/DemoPlugins/TestPlugin/plugin.py:52
+#: ../lib/python/Plugins/DemoPlugins/TestPlugin/plugin.py:78
+msgid "Test-Messagebox?"
+msgstr ""
+
#: ../lib/python/Screens/ParentalControlSetup.py:251
msgid "The pin code has been changed successfully."
msgstr ""
@@ -1415,6 +1631,10 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:69
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
#: ../lib/python/Components/NimManager.py:788
msgid "Three"
msgstr ""
@@ -1442,6 +1662,15 @@ msgstr ""
msgid "Timer Type"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:52
+#: ../lib/python/Screens/SleepTimerEdit.py:54
+msgid "Timer status:"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:949
+msgid "Timeshift not possible!"
+msgstr ""
+
#: ../lib/python/Screens/MediaPlayer.py:49
msgid "Title:"
msgstr ""
@@ -1468,14 +1697,11 @@ msgid "Transmission mode"
msgstr ""
#: ../lib/python/Screens/ServiceInfo.py:80
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:438
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:142
msgid "Transponder"
msgstr ""
-#: ../lib/python/Screens/ScanSetup.py:193
-msgid "Transpondertype"
-msgstr ""
-
#: ../lib/python/Screens/InputBox.py:168
msgid "Tries left:"
msgstr ""
@@ -1491,9 +1717,10 @@ msgstr ""
msgid "Tuesday"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395
+#: ../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
msgid "Tune"
msgstr ""
@@ -1506,7 +1733,7 @@ msgstr ""
msgid "Tuner status"
msgstr ""
-#: ../lib/python/Components/Language.py:27
+#: ../lib/python/Components/Language.py:28
msgid "Turkish"
msgstr ""
@@ -1547,10 +1774,14 @@ msgstr ""
msgid "Unmount failed"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:50
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:158
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:222
msgid "Updating finished. Here is the result:"
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:56
+#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:164
#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:228
msgid "Updating... Please wait... This can take some minutes..."
msgstr ""
@@ -1571,7 +1802,7 @@ msgstr ""
msgid "User defined"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1759
+#: ../lib/python/Screens/InfoBarGenerics.py:1749
msgid "View teletext..."
msgstr ""
@@ -1633,6 +1864,14 @@ msgid ""
"Press OK to start upgrade."
msgstr ""
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:135
+msgid "Zap back to service before positioner setup?"
+msgstr ""
+
+#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:232
+msgid "Zap back to service before satfinder?"
+msgstr ""
+
#: ../lib/python/Screens/ChannelSelection.py:380
msgid "[bouquet edit]"
msgstr ""
@@ -1673,18 +1912,18 @@ msgstr ""
msgid "add marker"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
-#: ../lib/python/Screens/InfoBarGenerics.py:1341
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1332
msgid "add recording (enter recording duration)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
-#: ../lib/python/Screens/InfoBarGenerics.py:1341
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1332
msgid "add recording (indefinitely)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
-#: ../lib/python/Screens/InfoBarGenerics.py:1341
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1332
msgid "add recording (stop after current event)"
msgstr ""
@@ -1713,6 +1952,7 @@ msgstr ""
#: ../lib/python/Screens/ChannelSelection.py:124
#: ../lib/python/Screens/MovieSelection.py:24
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:50
msgid "back"
msgstr ""
@@ -1720,7 +1960,7 @@ msgstr ""
msgid "blacklist"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
msgid "change recording (duration)"
msgstr ""
@@ -1740,7 +1980,7 @@ msgstr ""
msgid "complex"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:591
+#: ../lib/python/Screens/InfoBarGenerics.py:601
msgid "continue"
msgstr ""
@@ -1756,11 +1996,16 @@ msgstr ""
msgid "delete"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:63
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:65
+msgid "delete cut"
+msgstr ""
+
#: ../lib/python/Screens/MovieSelection.py:24
msgid "delete..."
msgstr ""
-#: ../lib/python/Components/config.py:262
+#: ../lib/python/Components/config.py:285
msgid "disable"
msgstr ""
@@ -1768,12 +2013,12 @@ msgstr ""
msgid "disable move mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
#: ../lib/python/Screens/TimerEntry.py:87
msgid "do nothing"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1341
+#: ../lib/python/Screens/InfoBarGenerics.py:1332
msgid "don't record"
msgstr ""
@@ -1785,7 +2030,7 @@ msgstr ""
msgid "empty/unknown"
msgstr ""
-#: ../lib/python/Components/config.py:262
+#: ../lib/python/Components/config.py:285
msgid "enable"
msgstr ""
@@ -1805,6 +2050,11 @@ msgstr ""
msgid "end bouquet edit"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:58
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:60
+msgid "end cut here"
+msgstr ""
+
#: ../lib/python/Screens/ChannelSelection.py:121
msgid "end favourites edit"
msgstr ""
@@ -1825,7 +2075,7 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:64
+#: ../lib/python/Screens/InfoBar.py:63
msgid "hear radio..."
msgstr ""
@@ -1846,15 +2096,26 @@ msgstr ""
msgid "hours"
msgstr ""
+#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:81
+#, python-format
+msgid ""
+"incoming call!\n"
+"%s calls on %s!"
+msgstr ""
+
#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322
msgid "init module"
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:98
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:73
+msgid "insert mark here"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBar.py:97
msgid "leave movie player..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1400
+#: ../lib/python/Screens/InfoBarGenerics.py:1390
msgid "left"
msgstr ""
@@ -1884,6 +2145,7 @@ msgstr ""
msgid "minute"
msgstr ""
+#: ../lib/python/Screens/SleepTimerEdit.py:27
#: ../lib/python/Components/UsageConfig.py:18
#: ../lib/python/Components/UsageConfig.py:19
#: ../lib/python/Components/UsageConfig.py:20
@@ -1898,18 +2160,19 @@ msgstr ""
msgid "never"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:261
+#: ../lib/python/Screens/InfoBarGenerics.py:262
msgid "next channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:263
+#: ../lib/python/Screens/InfoBarGenerics.py:264
msgid "next channel in history"
msgstr ""
#: ../lib/python/Screens/MessageBox.py:45
#: ../lib/python/Screens/ScanSetup.py:341
#: ../lib/python/Screens/ScanSetup.py:586
-#: ../lib/python/Components/config.py:254
+#: ../lib/python/Screens/SleepTimerEdit.py:63
+#: ../lib/python/Components/config.py:277
msgid "no"
msgstr ""
@@ -1944,14 +2207,14 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:360
#: ../lib/python/Screens/ScanSetup.py:369
#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/config.py:258
+#: ../lib/python/Components/config.py:281
msgid "off"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:360
#: ../lib/python/Screens/ScanSetup.py:369
#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/config.py:258
+#: ../lib/python/Components/config.py:281
msgid "on"
msgstr ""
@@ -1963,15 +2226,15 @@ msgstr ""
msgid "only /etc/enigma2 directory"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:264
+#: ../lib/python/Screens/InfoBarGenerics.py:265
msgid "open servicelist"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:259
+#: ../lib/python/Screens/InfoBarGenerics.py:260
msgid "open servicelist(down)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:258
+#: ../lib/python/Screens/InfoBarGenerics.py:259
msgid "open servicelist(up)"
msgstr ""
@@ -1979,7 +2242,7 @@ msgstr ""
msgid "pass"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:590
+#: ../lib/python/Screens/InfoBarGenerics.py:600
msgid "pause"
msgstr ""
@@ -1987,11 +2250,11 @@ msgstr ""
msgid "please press OK when ready"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:260
+#: ../lib/python/Screens/InfoBarGenerics.py:261
msgid "previous channel"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:262
+#: ../lib/python/Screens/InfoBarGenerics.py:263
msgid "previous channel in history"
msgstr ""
@@ -2003,10 +2266,18 @@ msgstr ""
msgid "recording..."
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:68
+msgid "remove after this position"
+msgstr ""
+
#: ../lib/python/Screens/ChannelSelection.py:95
msgid "remove all new found flags"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:67
+msgid "remove before this position"
+msgstr ""
+
#: ../lib/python/Screens/ChannelSelection.py:97
#: ../lib/python/Screens/ChannelSelection.py:102
msgid "remove entry"
@@ -2020,11 +2291,15 @@ msgstr ""
msgid "remove new found flag"
msgstr ""
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:75
+msgid "remove this mark"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:88
msgid "repeated"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1400
+#: ../lib/python/Screens/InfoBarGenerics.py:1390
msgid "right"
msgstr ""
@@ -2085,41 +2360,54 @@ msgstr ""
msgid "setup pin"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:397
+#: ../lib/python/Screens/InfoBarGenerics.py:407
msgid "show EPG..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:359
+#: ../lib/python/Screens/InfoBarGenerics.py:369
msgid "show event details"
msgstr ""
+#: ../SleepTimer.py:55
+msgid "shutdown"
+msgstr ""
+
#: ../lib/python/Components/NimManager.py:671
#: ../lib/python/Components/NimManager.py:681
#: ../lib/python/Components/ParentalControl.py:13
msgid "simple"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:596
+#: ../lib/python/Screens/InfoBarGenerics.py:606
msgid "skip backward"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:593
+#: ../lib/python/Screens/InfoBarGenerics.py:603
msgid "skip forward"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:911
+#: ../SleepTimer.py:55
+msgid "standby"
+msgstr ""
+
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:53
+#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:55
+msgid "start cut here"
+msgstr ""
+
+#: ../lib/python/Screens/InfoBarGenerics.py:921
msgid "start timeshift"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1400
+#: ../lib/python/Screens/InfoBarGenerics.py:1390
msgid "stereo"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1339
+#: ../lib/python/Screens/InfoBarGenerics.py:1330
msgid "stop recording"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:912
+#: ../lib/python/Screens/InfoBarGenerics.py:922
msgid "stop timeshift"
msgstr ""
@@ -2159,11 +2447,11 @@ msgstr ""
msgid "vertical"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1047
+#: ../lib/python/Screens/InfoBarGenerics.py:1057
msgid "view extensions..."
msgstr ""
-#: ../lib/python/Screens/InfoBar.py:63
+#: ../lib/python/Screens/InfoBar.py:62
msgid "view recordings..."
msgstr ""
@@ -2186,7 +2474,8 @@ msgstr ""
#: ../lib/python/Screens/MessageBox.py:45
#: ../lib/python/Screens/ScanSetup.py:341
#: ../lib/python/Screens/ScanSetup.py:586
-#: ../lib/python/Components/config.py:254
+#: ../lib/python/Screens/SleepTimerEdit.py:61
+#: ../lib/python/Components/config.py:277
msgid "yes"
msgstr ""
@@ -2195,6 +2484,10 @@ msgstr ""
msgid "yes (keep feeds)"
msgstr ""
+#: ../SleepTimer.py:27
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
#: ../lib/python/Screens/TimerEntry.py:86
msgid "zap"
msgstr ""
@@ -2228,10 +2521,6 @@ msgid "Games / Plugins"
msgstr ""
#: ../data/
-msgid "Do you want to enable the parental control feature or your dreambox?"
-msgstr ""
-
-#: ../data/
msgid ""
"You need to set a pin code and hide it from your children.\n"
"\n"
@@ -2247,10 +2536,6 @@ msgid "Yes, backup my settings!"
msgstr ""
#: ../data/
-msgid "Satconfig"
-msgstr ""
-
-#: ../data/
msgid ""
"You need a PC connected to your dreambox. If you need further instructions, "
"please visit the website http://www.dm7025.de.\n"
@@ -2294,10 +2579,6 @@ msgid ""
msgstr ""
#: ../data/
-msgid "Deep Standby"
-msgstr ""
-
-#: ../data/
msgid "Show positioner movement"
msgstr ""
@@ -2310,6 +2591,10 @@ msgid "Change bouquets in quickzap"
msgstr ""
#: ../data/
+msgid "Subtitles"
+msgstr ""
+
+#: ../data/
msgid "Sound"
msgstr ""
@@ -2462,10 +2747,6 @@ msgid "Standby / Restart"
msgstr ""
#: ../data/
-msgid "Standby"
-msgstr ""
-
-#: ../data/
msgid "EPG Selection"
msgstr ""
@@ -2546,6 +2827,10 @@ msgid "Timeshift"
msgstr ""
#: ../data/
+msgid "Reception Settings"
+msgstr ""
+
+#: ../data/
msgid "Downloadable plugins"
msgstr ""
@@ -2566,10 +2851,6 @@ msgid "Message"
msgstr ""
#: ../data/
-msgid "About..."
-msgstr ""
-
-#: ../data/
msgid "Seek"
msgstr ""
@@ -2799,6 +3080,10 @@ msgid "Select HDD"
msgstr ""
#: ../data/
+msgid "Subtitle selection"
+msgstr ""
+
+#: ../data/
msgid "Aspect Ratio"
msgstr ""
@@ -2915,6 +3200,10 @@ msgid "Yes, perform a shutdown now."
msgstr ""
#: ../data/
+msgid "Do you want to enable the parental control feature on your dreambox?"
+msgstr ""
+
+#: ../data/
msgid ""
"After the start wizard is completed, you need to protect single services. "
"Refer to your dreambox's manual on how to do that."
diff --git a/po/es.po b/po/es.po
index 643d24f2..72641a76 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-11-05 22:36+0200\n"
"Last-Translator: Jose Juan Zapater <josej@zapater.fdns.net>\n"
"Language-Team: none\n"
@@ -159,6 +159,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -245,6 +251,9 @@ msgstr "Arábigo"
msgid "Artist:"
msgstr "Artista:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Relación de aspecto"
@@ -498,6 +507,9 @@ msgstr "Desactivar PiP"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -562,9 +574,6 @@ msgstr ""
"¿Actualizar tu Dreambox?\n"
"¡Después de pulsar OK, espere!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "¿Quiere ver un tutorial?"
@@ -580,6 +589,9 @@ msgstr "Plugins descargables"
msgid "Downloading plugin information. Please wait..."
msgstr "Descargando información del plugin. Espere..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Alemán"
@@ -611,6 +623,9 @@ msgstr "Habilitar multiples listas"
msgid "Enable parental control"
msgstr "Activar el control de adultos"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Fin"
@@ -1209,9 +1224,6 @@ msgstr "Salida RF"
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "¿Seguro que quiere cerrar sin grabar la configuración?"
@@ -1393,6 +1405,9 @@ msgstr "Reproductor de radio..."
msgid "Show the tv player..."
msgstr "Mostrar el reproductor de tv"
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Parecido"
@@ -1411,6 +1426,12 @@ msgstr "Satélite único"
msgid "Single transponder"
msgstr "Transponder único"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr ""
@@ -1556,6 +1577,9 @@ msgstr "El pin introducido no es correcto."
msgid "The pin codes you entered are different."
msgstr "Los pins introducidos son diferentes."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1613,6 +1637,9 @@ msgstr "Error de grabación sanity"
msgid "Timer selection"
msgstr "Selección de grabación"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Pausa"
@@ -2292,6 +2319,9 @@ msgstr "mostrar EPG..."
msgid "show event details"
msgstr "mostrar detalles del evento"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2301,6 +2331,9 @@ msgstr "saltar adelante"
msgid "skip forward"
msgstr "saltar atrás"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2367,6 +2400,9 @@ msgstr "si"
msgid "yes (keep feeds)"
msgstr "si (conserva enlaces)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zapear"
diff --git a/po/fi.po b/po/fi.po
index 5e020172..01e5b0ff 100755
--- a/po/fi.po
+++ b/po/fi.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-12 23:59+0100\n"
"PO-Revision-Date: 2006-11-07 19:34+0200\n"
"Last-Translator: Sauli Halttu <salde@salde.net>\n"
"Language-Team: none\n"
@@ -153,6 +153,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -237,6 +243,9 @@ msgstr "Arabialainen"
msgid "Artist:"
msgstr "Artisti:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Kuvasuhde"
@@ -490,6 +499,9 @@ msgstr "Sulje Kuva Kuvassa-toiminto"
msgid "Disable Subtitles"
msgstr "Poista tekstitys"
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -554,9 +566,6 @@ msgstr ""
"Haluatko varmasti päivittää Dreamboxin?\n"
"Paina OK ja odota!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Haluatko katsoa opasohjelman?"
@@ -572,6 +581,9 @@ msgstr "Ladattavat lisäosat"
msgid "Downloading plugin information. Please wait..."
msgstr "Ladataan tietoja lisäosista. Odota..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Hollantilainen"
@@ -603,6 +615,9 @@ msgstr "Käytä useaa kanavanippua"
msgid "Enable parental control"
msgstr "Ota lapsilukko käyttöön"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Lopeta"
@@ -1205,9 +1220,6 @@ msgstr "RF-ulostulo"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Haluatko varmasti poistua tallentamatta asetuksia?"
@@ -1389,6 +1401,9 @@ msgstr "Näytä radiosoitin..."
msgid "Show the tv player..."
msgstr "Näytä tv..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Samanlainen"
@@ -1407,6 +1422,12 @@ msgstr "Yksi satelliitti"
msgid "Single transponder"
msgstr "Yksi lähetin"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Lukija"
@@ -1552,6 +1573,9 @@ msgstr "Syöttämäsi pin-koodi on väärin."
msgid "The pin codes you entered are different."
msgstr "Syöttämäsi pin-koodit eroavat toisistaan."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1609,6 +1633,9 @@ msgstr "Ajastinvirhe"
msgid "Timer selection"
msgstr "Ajastinvalinta"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Aikasiirto"
@@ -2285,6 +2312,9 @@ msgstr "näytä EPG..."
msgid "show event details"
msgstr "näytä ohjelman tarkemmat tiedot"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "suppea"
@@ -2294,6 +2324,9 @@ msgstr "siirry taaksepäin"
msgid "skip forward"
msgstr "siirry eteenpäin"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2360,6 +2393,9 @@ msgstr "kyllä"
msgid "yes (keep feeds)"
msgstr "kyllä (pidä feedit)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "vaihto"
diff --git a/po/fr.po b/po/fr.po
index 99bbcde4..cddaf95e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: enigma 2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-06-13 18:14+0200\n"
"Last-Translator: DonHora <donhora@myrealbox.com>\n"
"Language-Team: french\n"
@@ -157,6 +157,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -241,6 +247,9 @@ msgstr "Arabe"
msgid "Artist:"
msgstr "Artiste :"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Ratio d'aspect"
@@ -498,6 +507,9 @@ msgstr "Désactiver l'incrustation d'image"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -560,9 +572,6 @@ msgstr ""
"Voulez-vous mettre à jour votre Dreambox ?\n"
"Après avoir appuyé sur OK, veuillez patienter !"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Voulez-vous voir un tutoriel ?"
@@ -578,6 +587,9 @@ msgstr "Plugins téléchargeables"
msgid "Downloading plugin information. Please wait..."
msgstr "Téléchargement des informations sur les plugins. Patientez SVP..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Hollandais"
@@ -610,6 +622,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Fin"
@@ -1218,9 +1233,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1403,6 +1415,9 @@ msgstr "Afficher la radio..."
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Similaire"
@@ -1421,6 +1436,12 @@ msgstr "Satellite seul"
msgid "Single transponder"
msgstr "Transpondeur simple"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr ""
@@ -1572,6 +1593,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1633,6 +1657,9 @@ msgstr "Erreur de programmation"
msgid "Timer selection"
msgstr "Sélection de programmation"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2327,6 +2354,9 @@ msgstr "afficher le guide"
msgid "show event details"
msgstr "afficher les détails de l'émission"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2336,6 +2366,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2402,6 +2435,9 @@ msgstr "oui"
msgid "yes (keep feeds)"
msgstr "oui (garder les feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zap"
diff --git a/po/is.po b/po/is.po
index 07e3dbfd..113a22df 100755
--- a/po/is.po
+++ b/po/is.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Icelandic translation v.1.21\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-10-19 22:58-0000\n"
"Last-Translator: Baldur Þór Sveinsson <baddi@oreind.is>\n"
"Language-Team: Polar Team <baddi@oreind.is>\n"
@@ -158,6 +158,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -244,6 +250,9 @@ msgstr "Arabíska"
msgid "Artist:"
msgstr "Listmaður:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Stærðarhlutfall"
@@ -498,6 +507,9 @@ msgstr "Gera Mynd í Mynd óvirka"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -562,9 +574,6 @@ msgstr ""
"Viltu uppfæra Dreamboxið þitt?\n"
"Þú þarft að bíða eftir að hafa ýtt á OK!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Viltu horfa á kennslu?"
@@ -580,6 +589,9 @@ msgstr "Niðurhalanleg innskot"
msgid "Downloading plugin information. Please wait..."
msgstr "Hala niður innskots upplýsingum. Vinsamlega bíðið..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Hollenska"
@@ -611,6 +623,9 @@ msgstr "Virkja marga rásavendi"
msgid "Enable parental control"
msgstr "Virkja foreldra stýringu"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Hætta"
@@ -1212,9 +1227,6 @@ msgstr "Loftnetsrás"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Viltu loka án þess að vista stillingar?"
@@ -1395,6 +1407,9 @@ msgstr "Sýna útvarpsspilara..."
msgid "Show the tv player..."
msgstr "Sýna sjónvarpsspilara"
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Svipað"
@@ -1413,6 +1428,12 @@ msgstr "Einn gervihnöttur"
msgid "Single transponder"
msgstr "Einn sendir"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Hólf"
@@ -1558,6 +1579,9 @@ msgstr "Kóðinn sem þú slóst inn er rangur."
msgid "The pin codes you entered are different."
msgstr "Kóðarnir sem þú slóst inn eru ekki eins."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr "Álfurinn getur tekið afrit af stillingum þínum. Viltu taka afrit núna?"
@@ -1613,6 +1637,9 @@ msgstr "Villa í tímastillingu"
msgid "Timer selection"
msgstr "Tímastillinga val"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Lifandi pása"
@@ -2288,6 +2315,9 @@ msgstr "sýna EPG"
msgid "show event details"
msgstr "sýna atriði nánar"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "einfalt"
@@ -2297,6 +2327,9 @@ msgstr "fara til baka"
msgid "skip forward"
msgstr "fara áfram"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2363,6 +2396,9 @@ msgstr "já"
msgid "yes (keep feeds)"
msgstr "já (halda fæðirásum)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "stökk"
diff --git a/po/it.po b/po/it.po
index 53677b24..331bd3de 100755
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-04-01 02:52+0100\n"
"Last-Translator: Musicbob <musicbob@satnews.tv.it>\n"
"Language-Team: none\n"
@@ -157,6 +157,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -241,6 +247,9 @@ msgstr "Arabo"
msgid "Artist:"
msgstr ""
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Modalità schermo"
@@ -493,6 +502,9 @@ msgstr ""
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -555,9 +567,6 @@ msgstr ""
"Vuoi aggiornare il tuo Dreambox?\n"
"Dopo aver premuto OK, attendi"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Vuoi vedere una guida utente?"
@@ -573,6 +582,9 @@ msgstr "Plugins scaricabili"
msgid "Downloading plugin information. Please wait..."
msgstr "Sto cercando informazioni sui plugins. Attendere prego..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Olandese"
@@ -604,6 +616,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Fine"
@@ -1199,9 +1214,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1381,6 +1393,9 @@ msgstr "Modo Radio..."
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr ""
@@ -1399,6 +1414,12 @@ msgstr "Satellite singolo"
msgid "Single transponder"
msgstr "Transponder singolo"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1545,6 +1566,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr "Vuoi effettuare un backup delle impostazioni correnti ora?"
@@ -1600,6 +1624,9 @@ msgstr "Errore di integrità Timer"
msgid "Timer selection"
msgstr "Selezione Timer"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2276,6 +2303,9 @@ msgstr "Mostra EPG..."
msgid "show event details"
msgstr "Mostra dettagli evento"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2285,6 +2315,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2351,6 +2384,9 @@ msgstr "si"
msgid "yes (keep feeds)"
msgstr ""
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 26fb5f54..a27f2bfe 100755
--- a/po/nl.po
+++ b/po/nl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-11-04 23:27+0100\n"
"Last-Translator: Kees Aerts <aerts11@planet.nl>\n"
"Language-Team: none\n"
@@ -160,6 +160,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -246,6 +252,9 @@ msgstr "Arabisch"
msgid "Artist:"
msgstr "Artist:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Aspect Ratio"
@@ -500,6 +509,9 @@ msgstr "Deactiveer PIP"
msgid "Disable Subtitles"
msgstr "Ondertitel Uit"
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -564,9 +576,6 @@ msgstr ""
"Wilt u de dreambox updaten?\n"
"Druk op OK en wacht een moment!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Wilt u een cutlist voorbeeld zien?"
-
msgid "Do you want to view a tutorial?"
msgstr "Wilt u een voorbeeld zien?"
@@ -582,6 +591,9 @@ msgstr "Downloadbare plugins"
msgid "Downloading plugin information. Please wait..."
msgstr "Binnenhalen plugin informatie. Een ogenblik aub..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Nederlands"
@@ -613,6 +625,9 @@ msgstr "Laat meerdere boeketten toe"
msgid "Enable parental control"
msgstr "Zet parental control aan"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Einde"
@@ -1215,9 +1230,6 @@ msgstr "RF instellingen"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Wilt u echt stoppen zonder saven?"
@@ -1399,6 +1411,9 @@ msgstr "Radio Weergve mode..."
msgid "Show the tv player..."
msgstr "Tv Weergve mode..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Gelijkaardig"
@@ -1417,6 +1432,12 @@ msgstr "Een satelliet"
msgid "Single transponder"
msgstr "Een transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1562,6 +1583,9 @@ msgstr "De ingevoerde pincode is fout."
msgid "The pin codes you entered are different."
msgstr "De pincodes zijn verschillend."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1618,6 +1642,9 @@ msgstr "Timer sanity error"
msgid "Timer selection"
msgstr "Timer selectie"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Timeshift"
@@ -2298,6 +2325,9 @@ msgstr "laat EPG zien..."
msgid "show event details"
msgstr "laat EPG details zien"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "simpel"
@@ -2307,6 +2337,9 @@ msgstr "Acteruit spoelen"
msgid "skip forward"
msgstr "Vooruit spoelen"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2373,6 +2406,9 @@ msgstr "ja"
msgid "yes (keep feeds)"
msgstr "ja (bewaar feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zap"
@@ -2400,6 +2436,9 @@ msgstr "zapped"
#~ msgid "Disable subtitles"
#~ msgstr "Zet ondertitel uit"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Wilt u een cutlist voorbeeld zien?"
+
#~ msgid "Enigma1 like radiomode"
#~ msgstr "Enigma1 ähnlicher Radio Modus"
diff --git a/po/no.po b/po/no.po
index eaed44fd..8f120b65 100755
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-04-24 17:15+0100\n"
"Last-Translator: MMMMMM <theMMMMMM@gmail.com>\n"
"Language-Team: none\n"
@@ -155,6 +155,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -239,6 +245,9 @@ msgstr "Arabisk"
msgid "Artist:"
msgstr ""
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Breddeforhold"
@@ -491,6 +500,9 @@ msgstr ""
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -551,9 +563,6 @@ msgstr ""
"Vil du oppdatere din Dreambox?\n"
"Etter å ha trykt OK, vennligst vent!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Vil du se en veiledning?"
@@ -569,6 +578,9 @@ msgstr "Nedlastbare plugins"
msgid "Downloading plugin information. Please wait..."
msgstr "Laster ned plugin informasjon. Vennligst vent..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Nederlandsk"
@@ -600,6 +612,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Avslutte"
@@ -1195,9 +1210,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1379,6 +1391,9 @@ msgstr "Vis radio spilleren"
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr ""
@@ -1397,6 +1412,12 @@ msgstr "Singel satellit"
msgid "Single transponder"
msgstr "Singel transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr ""
@@ -1537,6 +1558,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1593,6 +1617,9 @@ msgstr ""
msgid "Timer selection"
msgstr ""
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2264,6 +2291,9 @@ msgstr "Vis EPG..."
msgid "show event details"
msgstr "Vis sendingdetaljer"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2273,6 +2303,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2339,6 +2372,9 @@ msgstr "Ja"
msgid "yes (keep feeds)"
msgstr ""
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 62437dea..aa341ef5 100755
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: tuxbox-enigma 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-10-19 15:59+0100\n"
"Last-Translator: WeeGull <weegull@hotmail.com>\n"
"Language-Team: none\n"
@@ -157,6 +157,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -243,6 +249,9 @@ msgstr "Arabiska"
msgid "Artist:"
msgstr "Artist:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Bildformat"
@@ -495,6 +504,9 @@ msgstr "Avaktivera Bild i Bild"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -559,9 +571,6 @@ msgstr ""
"Vill du uppdatera din Dreambox?\n"
"Tryck OK och vänligen vänta!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Vill du visa cutlist guiden?"
-
msgid "Do you want to view a tutorial?"
msgstr "Vill du se en guide?"
@@ -577,6 +586,9 @@ msgstr "Nerladdningsbara plugins"
msgid "Downloading plugin information. Please wait..."
msgstr "Laddar ner information om pluginet. Var vänlig vänta..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Holländska"
@@ -608,6 +620,9 @@ msgstr "Aktivera flera bouquets"
msgid "Enable parental control"
msgstr "Aktivera föräldrarkontroll"
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Slut"
@@ -1209,9 +1224,6 @@ msgstr "RF ut"
msgid "RGB"
msgstr "RGB"
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr "Verkligen stänga utan spara inställningarna?"
@@ -1393,6 +1405,9 @@ msgstr "Visa radiospelaren..."
msgid "Show the tv player..."
msgstr "Visa tv spelare..."
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Liknande"
@@ -1411,6 +1426,12 @@ msgstr "Singel satellit"
msgid "Single transponder"
msgstr "Singel transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Slot "
@@ -1556,6 +1577,9 @@ msgstr "PIN koden du angav var fel."
msgid "The pin codes you entered are different."
msgstr "PIN koderna du angav är olika."
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1612,6 +1636,9 @@ msgstr "Timer fel"
msgid "Timer selection"
msgstr "Timer val"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr "Timeshift"
@@ -2291,6 +2318,9 @@ msgstr "visa EPG..."
msgid "show event details"
msgstr "visa program detaljer"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr "enkelt"
@@ -2300,6 +2330,9 @@ msgstr "hoppa bakåt"
msgid "skip forward"
msgstr "hoppa framåt"
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2366,6 +2399,9 @@ msgstr "ja"
msgid "yes (keep feeds)"
msgstr "ja (behåll feeds)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "zap"
@@ -2402,6 +2438,9 @@ msgstr "zapped"
#~ msgid "Do you really want to delete this recording?"
#~ msgstr "Vill du verkligen ta bort den här inspelningen?"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Vill du visa cutlist guiden?"
+
#~ msgid "Equal to Socket A"
#~ msgstr "Likadant som Tuner A"
diff --git a/po/tr.po b/po/tr.po
index c4481490..958f78ab 100755
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tr 01\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-11-12 21:58+0100\n"
+"POT-Creation-Date: 2006-11-13 00:19+0100\n"
"PO-Revision-Date: 2006-06-16 12:51+0200\n"
"Last-Translator: koksal <goksel@goksel.com>\n"
"Language-Team: GökselD& <gok_68@hotmail.com>\n"
@@ -154,6 +154,12 @@ msgid ""
"start the satfinder."
msgstr ""
+msgid "A sleep timer want's to set your"
+msgstr ""
+
+msgid "A sleep timer want's to shut down"
+msgstr ""
+
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -238,6 +244,9 @@ msgstr "Arapça"
msgid "Artist:"
msgstr "Sanatçı:"
+msgid "Ask before shutdown:"
+msgstr ""
+
msgid "Aspect Ratio"
msgstr "Görüntü Oranı"
@@ -490,6 +499,9 @@ msgstr "Resim İçinde Resmi devredışı Bırak"
msgid "Disable Subtitles"
msgstr ""
+msgid "Disabled"
+msgstr ""
+
#, python-format
msgid ""
"Disconnected from\n"
@@ -552,9 +564,6 @@ msgstr ""
" Dreambox Güncellemek İstermisiniz?\n"
"Bastıktan Sonra OK, Lütfen Bekle!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Görerek İstermisiniz Öğreticiyi?"
@@ -570,6 +579,9 @@ msgstr "İndirilebilir plugins"
msgid "Downloading plugin information. Please wait..."
msgstr "Plugin İndiriliyor Lütfen Bekleyin..."
+msgid "Dreambox to standby. Do that now?"
+msgstr ""
+
msgid "Dutch"
msgstr "Almanca"
@@ -601,6 +613,9 @@ msgstr ""
msgid "Enable parental control"
msgstr ""
+msgid "Enabled"
+msgstr ""
+
msgid "End"
msgstr "Son"
@@ -1194,9 +1209,6 @@ msgstr ""
msgid "RGB"
msgstr ""
-msgid "RSS Feed URI"
-msgstr ""
-
msgid "Really close without saving settings?"
msgstr ""
@@ -1377,6 +1389,9 @@ msgstr "Radyo Playeri Göster"
msgid "Show the tv player..."
msgstr ""
+msgid "Shutdown Dreambox after"
+msgstr ""
+
msgid "Similar"
msgstr "Benzer"
@@ -1395,6 +1410,12 @@ msgstr "Tek Uydu"
msgid "Single transponder"
msgstr "Tek Transponder"
+msgid "Sleep Timer"
+msgstr ""
+
+msgid "Sleep timer action:"
+msgstr ""
+
msgid "Slot "
msgstr "Yuva"
@@ -1540,6 +1561,9 @@ msgstr ""
msgid "The pin codes you entered are different."
msgstr ""
+msgid "The sleep timer has been acitvated."
+msgstr ""
+
msgid ""
"The wizard can backup your current settings. Do you want to do a backup now?"
msgstr ""
@@ -1595,6 +1619,9 @@ msgstr "Zaman Hesaplama Hatası"
msgid "Timer selection"
msgstr "Zaman Seçici"
+msgid "Timer status:"
+msgstr ""
+
msgid "Timeshift"
msgstr ""
@@ -2256,6 +2283,9 @@ msgstr "Detaylı EPG"
msgid "show event details"
msgstr "Olay Detayını Göster"
+msgid "shutdown"
+msgstr ""
+
msgid "simple"
msgstr ""
@@ -2265,6 +2295,9 @@ msgstr ""
msgid "skip forward"
msgstr ""
+msgid "standby"
+msgstr ""
+
msgid "start cut here"
msgstr ""
@@ -2331,6 +2364,9 @@ msgstr "Evet"
msgid "yes (keep feeds)"
msgstr "Evet (Bunları Sakla)"
+msgid "your Dreambox. Shutdown now?"
+msgstr ""
+
msgid "zap"
msgstr "Canlılık"