aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-07 01:00:31 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-01-07 01:00:31 +0000
commit674719294af7449c52d93b1969aeebbaa9117cbe (patch)
tree5a0678ae9982c8a0bc7607d46a2b03b9d8738027
parent181f1cdcee428f446da2a1d05976b7f1a75a8431 (diff)
downloadenigma2-674719294af7449c52d93b1969aeebbaa9117cbe.tar.gz
enigma2-674719294af7449c52d93b1969aeebbaa9117cbe.zip
take care of running recording before realy shutdown e2
-rw-r--r--RecordTimer.py16
-rw-r--r--SleepTimer.py20
-rw-r--r--data/menu.xml5
-rwxr-xr-xlib/python/Plugins/SystemPlugins/SkinSelector/plugin.py5
-rw-r--r--lib/python/Screens/Menu.py2
-rw-r--r--lib/python/Screens/Standby.py79
-rw-r--r--lib/python/Screens/TimerEntry.py2
-rw-r--r--mytest.py14
-rwxr-xr-xpo/ar.po56
-rwxr-xr-xpo/ca.po23
-rwxr-xr-xpo/cs.po26
-rwxr-xr-xpo/da.po62
-rw-r--r--po/de.po59
-rw-r--r--po/en.po59
-rw-r--r--po/enigma2.pot447
-rw-r--r--po/es.po26
-rwxr-xr-xpo/fi.po56
-rw-r--r--po/fr.po59
-rwxr-xr-xpo/hr.po62
-rwxr-xr-xpo/hu.po59
-rwxr-xr-xpo/is.po59
-rwxr-xr-xpo/it.po56
-rwxr-xr-xpo/nl.po65
-rwxr-xr-xpo/no.po56
-rwxr-xr-xpo/sv.po65
-rwxr-xr-xpo/tr.po59
26 files changed, 1216 insertions, 281 deletions
diff --git a/RecordTimer.py b/RecordTimer.py
index f330f8c0..839069ac 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -7,9 +7,11 @@ from Components.config import config, ConfigYesNo
import timer
import xml.dom.minidom
-from enigma import quitMainloop, eEPGCache, getBestPlayableServiceReference, eServiceReference
+from enigma import eEPGCache, getBestPlayableServiceReference, eServiceReference
from Screens.MessageBox import MessageBox
+from Screens.Standby import Standby, TryQuitMainloop, inStandby, inTryQuitMainloop
+
import NavigationInstance
from time import localtime
@@ -69,7 +71,6 @@ class RecordTimerEntry(timer.TimerEntry):
self.start_prepare = 0
self.justplay = justplay
self.afterEvent = afterEvent
- self.session = None
self.log_entries = []
self.resetState()
@@ -212,10 +213,13 @@ class RecordTimerEntry(timer.TimerEntry):
NavigationInstance.instance.stopRecordService(self.record_service)
self.record_service = None
if self.afterEvent == AFTEREVENT.STANDBY:
- if self.session is not None:
- self.session.open(Standby, self)
- elif self.afterEvent == AFTEREVENT.DEEPSTANDBY:
- quitMainloop(1)
+ global inStandby
+ if not inStandby:
+ Notifications.AddNotification(Standby)
+ if self.afterEvent == AFTEREVENT.DEEPSTANDBY:
+ global inTryQuitMainloop
+ if not inTryQuitMainloop:
+ Notifications.AddNotification(TryQuitMainloop, 1)
return True
def getNextActivation(self):
diff --git a/SleepTimer.py b/SleepTimer.py
index 41ad2cda..82acc124 100644
--- a/SleepTimer.py
+++ b/SleepTimer.py
@@ -2,14 +2,12 @@ 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
+from Screens.Standby import Standby, TryQuitMainloop, inStandby, inTryQuitMainloop
class SleepTimerEntry(timer.TimerEntry):
def __init__(self, begin):
@@ -23,12 +21,14 @@ class SleepTimerEntry(timer.TimerEntry):
def activate(self):
if self.state == self.StateRunning:
if config.SleepTimer.action.value == "shutdown":
- if config.SleepTimer.ask.value:
+ global inTryQuitMainloop
+ if config.SleepTimer.ask.value and not inTryQuitMainloop:
Notifications.AddNotificationWithCallback(self.shutdown, MessageBox, _("A sleep timer want's to shut down\nyour Dreambox. Shutdown now?"), timeout = 20)
else:
self.shutdown(True)
elif config.SleepTimer.action.value == "standby":
- if config.SleepTimer.ask.value:
+ global inStandby
+ if config.SleepTimer.ask.value and not inStandby:
Notifications.AddNotificationWithCallback(self.standby, MessageBox, _("A sleep timer want's to set your\nDreambox to standby. Do that now?"), timeout = 20)
else:
self.standby(True)
@@ -39,14 +39,16 @@ class SleepTimerEntry(timer.TimerEntry):
return False
def shutdown(self, answer):
+ global inTryQuitMainloop
if answer is not None:
- if answer:
- quitMainloop(1)
+ if answer and not inTryQuitMainloop:
+ Notifications.AddNotification(TryQuitMainloop, 1)
def standby(self, answer):
if answer is not None:
- if answer:
- Notifications.AddNotification(Standby, self)
+ global inStandby
+ if answer and not inStandby:
+ Notifications.AddNotification(Standby)
class SleepTimer(timer.Timer):
def __init__(self):
diff --git a/data/menu.xml b/data/menu.xml
index 4c530fe0..caa33aba 100644
--- a/data/menu.xml
+++ b/data/menu.xml
@@ -74,7 +74,8 @@
<menu text="Standby / Restart">
<id val="shutdown" />
<!--<item text="Standby"><code>quitMainloop(0)</code></item>-->
- <item text="Restart"><code>quitMainloop(2)</code></item>
- <item text="Deep Standby"><code>quitMainloop(1)</code></item>
+ <item text="Standby"><screen module="Standby" screen="Standby"/></item>
+ <item text="Restart"><screen module="Standby" screen="TryQuitMainloop">2</screen></item>
+ <item text="Deep Standby"><screen module="Standby" screen="TryQuitMainloop">1</screen></item>
</menu>
</menu>
diff --git a/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py b/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py
index b0418de0..adeff071 100755
--- a/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py
@@ -2,6 +2,7 @@
# (c) 2006 Stephan Reichholf
# This Software is Free, use it where you want, when you want for whatever you want and modify it if you want but don't remove my copyright!
from Screens.Screen import Screen
+from Screens.Standby import TryQuitMainloop
from Screens.MessageBox import MessageBox
from Components.ActionMap import NumberActionMap
from Components.Pixmap import Pixmap
@@ -12,7 +13,6 @@ from Tools.Directories import SCOPE_SKIN
from Components.config import config
from os import path, walk
-from enigma import quitMainloop
class SkinSelector(Screen):
# for i18n:
@@ -33,7 +33,6 @@ class SkinSelector(Screen):
Screen.__init__(self, session)
self.skinlist = []
- self.session = session
self.previewPath = ""
path.walk(self.root, self.find, "")
@@ -114,7 +113,7 @@ class SkinSelector(Screen):
def restartGUI(self, answer):
if answer is True:
- quitMainloop(3)
+ self.session.open(TryQuitMainloop, 3)
def SkinSelMain(session, **kwargs):
session.open(SkinSelector)
diff --git a/lib/python/Screens/Menu.py b/lib/python/Screens/Menu.py
index a038cdf0..113eeb6d 100644
--- a/lib/python/Screens/Menu.py
+++ b/lib/python/Screens/Menu.py
@@ -11,8 +11,6 @@ from Components.PluginComponent import plugins
from Tools.Directories import resolveFilename, SCOPE_SKIN
-from enigma import quitMainloop
-
import xml.dom.minidom
from xml.dom import EMPTY_NAMESPACE
from skin import elementsWithTag
diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py
index 06c44703..cb0a957e 100644
--- a/lib/python/Screens/Standby.py
+++ b/lib/python/Screens/Standby.py
@@ -5,6 +5,7 @@ from Components.AVSwitch import AVSwitch
from enigma import eDVBVolumecontrol, eDBoxLCD, eServiceReference
from Components.Sources.Clock import Clock
+inStandby = False
class Standby(Screen):
def Power(self):
@@ -19,7 +20,7 @@ class Standby(Screen):
#set brightness of lcd
eDBoxLCD.getInstance().setLCDBrightness(config.lcd.bright.value * 20)
#kill me
- self.close()
+ self.close(True)
def setMute(self):
if (eDVBVolumecontrol.getInstance().isMuted()):
@@ -33,9 +34,8 @@ class Standby(Screen):
if self.wasMuted == 0:
eDVBVolumecontrol.getInstance().volumeToggleMute()
- def __init__(self, session, infobar):
+ def __init__(self, session):
Screen.__init__(self, session)
- self.infobar = infobar
self.avswitch = AVSwitch()
print "enter standby"
@@ -55,10 +55,21 @@ class Standby(Screen):
self.avswitch.setInput("SCART")
#set lcd brightness to standby value
eDBoxLCD.getInstance().setLCDBrightness(config.lcd.standby.value * 20)
+ self.onShow.append(self.__onShow)
+ self.onHide.append(self.__onHide)
def createSummary(self):
return StandbySummary
+ def __onShow(self):
+ global inStandby
+ inStandby = True
+
+ def __onHide(self):
+ global inStandby
+ inStandby = False
+
+
class StandbySummary(Screen):
skin = """
<screen position="0,0" size="132,64">
@@ -70,3 +81,65 @@ class StandbySummary(Screen):
def __init__(self, session, parent):
Screen.__init__(self, session)
self["CurrentTime"] = Clock()
+
+from enigma import quitMainloop, iRecordableService
+from Screens.MessageBox import MessageBox
+from time import time
+
+inTryQuitMainloop = False
+
+class TryQuitMainloop(MessageBox):
+ def __init__(self, session, retvalue=1):
+ self.retval=retvalue
+ recordings = len(session.nav.getRecordings())
+ self.connected = False
+ next_rec_time = -1
+ if not recordings:
+ next_rec_time = session.nav.RecordTimer.getNextRecordingTime()
+ if recordings or (next_rec_time > 0 and (next_rec_time - time()) < 360):
+ if retvalue == 1:
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really shutdown now?"), type = MessageBox.TYPE_YESNO, timeout = -1, close_on_any_key = False)
+ elif retvalue == 2:
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really reboot now?"), type = MessageBox.TYPE_YESNO, timeout = -1, close_on_any_key = False)
+ elif retvalue == 4:
+ pass
+ else:
+ MessageBox.__init__(self, session, _("Recording(s) are in progress or comming up in few seconds... really restart now?"), type = MessageBox.TYPE_YESNO, timeout = -1, close_on_any_key = False)
+ self.skinName = "MessageBox"
+ session.nav.record_event.append(self.getRecordEvent)
+ self.connected = True
+ self.onShow.append(self.__onShow)
+ self.onHide.append(self.__onHide)
+ else:
+ self.skin = """<screen position="0,0" size="0,0"/>"""
+ Screen.__init__(self, session)
+ self.close(True)
+
+ def getRecordEvent(self, recservice, event):
+ if event == iRecordableService.evEnd:
+ recordings = self.session.nav.getRecordings()
+ if not len(recordings): # no more recordings exist
+ rec_time = self.session.nav.RecordTimer.getNextRecordingTime()
+ if rec_time > 0 and (rec_time - time()) < 360:
+ self.initTimeout(360) # wait for next starting timer
+ else:
+ self.close(True) # immediate shutdown
+ elif event == iRecordableService.evStart:
+ self.stopTimer()
+
+ def close(self, value):
+ if self.connected:
+ self.conntected=False
+ self.session.nav.record_event.remove(self.getRecordEvent)
+ if value:
+ quitMainloop(self.retval)
+ else:
+ MessageBox.close(self, True)
+
+ def __onShow(self):
+ global inTryQuitMainloop
+ inTryQuitMainloop = True
+
+ def __onHide(self):
+ global inTryQuitMainloop
+ inTryQuitMainloop = False
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index 2a572714..fc4158da 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -84,7 +84,7 @@ class TimerEntry(Screen, ConfigListScreen):
day[weekday] = 1
self.timerentry_justplay = ConfigSelection(choices = [("zap", _("zap")), ("record", _("record"))], default = {0: "record", 1: "zap"}[justplay])
- self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("deepstandby", _("go to deep standby"))], default = afterevent)
+ self.timerentry_afterevent = ConfigSelection(choices = [("nothing", _("do nothing")), ("standby", _("go to standby")), ("deepstandby", _("go to deep standby"))], default = afterevent)
self.timerentry_type = ConfigSelection(choices = [("once",_("once")), ("repeated", _("repeated"))], default = type)
self.timerentry_name = ConfigText(default = self.timer.name, fixed_size = False)
self.timerentry_description = ConfigText(default = self.timer.description, fixed_size = False)
diff --git a/mytest.py b/mytest.py
index 2b032e6c..5bc08914 100644
--- a/mytest.py
+++ b/mytest.py
@@ -387,7 +387,7 @@ class VolumeControl:
self.muteDialog.hide()
self.volumeDialog.setValue(vol)
-from Screens.Standby import Standby
+from Screens.Standby import Standby, TryQuitMainloop, inTryQuitMainloop
class PowerKey:
""" PowerKey stuff - handles the powerkey press and powerkey release actions"""
@@ -409,7 +409,9 @@ class PowerKey:
def powertimer(self):
print "PowerOff - Now!"
- self.quit()
+ global inTryQuitMainloop
+ if not inTryQuitMainloop:
+ self.session.open(TryQuitMainloop, 1)
def powerdown(self):
self.standbyblocked = 0
@@ -423,11 +425,7 @@ class PowerKey:
def standby(self):
if self.session.current_dialog and self.session.current_dialog.ALLOW_SUSPEND:
- self.session.open(Standby, self)
-
- def quit(self):
- # halt
- quitMainloop(1)
+ self.session.open(Standby)
from Screens.Scart import Scart
@@ -489,7 +487,7 @@ def runScreenTest():
# we need session.scart to access it from within menu.xml
session.scart = AutoScartControl(session)
-
+
runReactor()
configfile.save()
diff --git a/po/ar.po b/po/ar.po
index 288eff13..d59d3168 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+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"
@@ -380,6 +380,12 @@ msgstr ""
msgid "Code rate low"
msgstr ""
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "نوع الالـوان"
@@ -423,6 +429,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "التباين"
@@ -746,6 +755,9 @@ msgstr ""
msgid "Goto position"
msgstr ""
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr ""
@@ -758,6 +770,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr ""
@@ -1113,6 +1128,9 @@ msgstr "واحد"
msgid "Online-Upgrade"
msgstr ""
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1302,6 +1320,21 @@ msgstr ""
msgid "Recording"
msgstr "تسجيل"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1346,6 +1379,9 @@ msgstr ""
msgid "Right"
msgstr ""
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1608,6 +1644,9 @@ msgstr ""
msgid "Symbol Rate"
msgstr ""
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "النـظام"
@@ -1728,12 +1767,21 @@ msgstr ""
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "وضع النقل"
msgid "Transponder"
msgstr ""
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr ""
@@ -2178,6 +2226,9 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2415,6 +2466,9 @@ msgstr ""
msgid "show event details"
msgstr ""
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 4a26bacc..1a945f24 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: 2007-01-05 10:01+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-19 09:56+0100\n"
"Last-Translator: Oriol Pellicer i Sabrià <oriol@elsud.org>\n"
"Language-Team: \n"
@@ -618,9 +618,6 @@ msgstr ""
"Vols actualitzar la Dreambox?\n"
"Després de prémer OK, espera!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr ""
-
msgid "Do you want to view a tutorial?"
msgstr "Vols veure un tutorial?"
@@ -1380,6 +1377,21 @@ msgstr "Arxius gravats..."
msgid "Recording"
msgstr "Gravant"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Les gravacions tenen prioritat"
@@ -2326,6 +2338,9 @@ msgstr "tot el directori /etc"
msgid "go to deep standby"
msgstr "aturar completament"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "escoltar la ràdio..."
diff --git a/po/cs.po b/po/cs.po
index 50ed3908..13b3a632 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: 2007-01-03 19:16+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2007-01-03 19:09+0100\n"
"Last-Translator: ws79 <ws79@centrum.cz>\n"
"Language-Team: \n"
@@ -602,9 +602,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?"
@@ -1362,6 +1359,21 @@ msgstr "Nahrané pořady..."
msgid "Recording"
msgstr "Nahrávání"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Nahrávání má vždy prioritu"
@@ -2294,6 +2306,9 @@ msgstr "plný adresář /etc"
msgid "go to deep standby"
msgstr "přejít do hlubokého spánku"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "Poslouchat rádio..."
@@ -2652,6 +2667,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 a2efaa0c..8ab01d04 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-12-19 22:29+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-19 19:37+0100\n"
"Last-Translator: Gaj1 <gaj1@satandream.com>\n"
"Language-Team: The Polar Team <Gaj@satandream.com>\n"
@@ -390,6 +390,12 @@ msgstr "Kode rate høj"
msgid "Code rate low"
msgstr "Kode rate lav"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Farve Format"
@@ -436,6 +442,9 @@ msgstr ""
"fejlede! (%s)\n"
"prøver igen..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrast"
@@ -596,9 +605,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 klipliste oversigt?"
-
msgid "Do you want to view a tutorial?"
msgstr "Vil du se en oversigt?"
@@ -781,6 +787,9 @@ msgstr "Gå til 0"
msgid "Goto position"
msgstr "Drej til position"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Sikkerheds interval type"
@@ -793,6 +802,9 @@ msgstr "Harddisk Indstilling"
msgid "Harddisk standby after"
msgstr "Harddisk Standby efter"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hiraki type"
@@ -1155,6 +1167,9 @@ msgstr "En"
msgid "Online-Upgrade"
msgstr "Online-Opgradering"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Andet..."
@@ -1347,6 +1362,21 @@ msgstr "Optagede filer..."
msgid "Recording"
msgstr "Optager"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Optagelser har altid prioritet"
@@ -1391,6 +1421,9 @@ msgstr "Indstillinger genskabt. Tryk OK for at aktivere indstillingerne nu."
msgid "Right"
msgstr "Højre"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Aktiveret"
@@ -1660,6 +1693,9 @@ msgstr "Skift til forrige underkanal"
msgid "Symbol Rate"
msgstr "Symbol Rate"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "System"
@@ -1784,12 +1820,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Transmissions type"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr "Forsøg tilbage:"
@@ -2266,6 +2311,9 @@ msgstr "full /etc direktorie"
msgid "go to deep standby"
msgstr "Gå til dyb standby"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "Høre radio..."
@@ -2505,6 +2553,9 @@ msgstr "Vis alternativer"
msgid "show event details"
msgstr "Vis program detaljer"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "Slukke"
@@ -2614,6 +2665,9 @@ msgstr "zappet"
#~ msgid "Add service"
#~ msgstr "Tilføj kanal"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Vil du se en klipliste oversigt?"
+
#~ msgid "Remove service"
#~ msgstr "Fjerne kanal"
diff --git a/po/de.po b/po/de.po
index 7e420136..e21f722a 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-19 08:29+0100\n"
"Last-Translator: Stefan Pluecken <stefanpl@baer.rwth-aachen.de>\n"
"Language-Team: none\n"
@@ -400,6 +400,12 @@ msgstr "Empfangsrate hoch"
msgid "Code rate low"
msgstr "Empfangsrate niedrig"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Farbformat"
@@ -446,6 +452,9 @@ msgstr ""
"fehlgeschlagen! (%s)\n"
"Erneuter Versuch..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrast"
@@ -777,6 +786,9 @@ msgstr "Gehe zu 0"
msgid "Goto position"
msgstr "Auf Position drehen"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Guard Interval Modus"
@@ -789,6 +801,9 @@ msgstr "Festplatten-Einstellungen"
msgid "Harddisk standby after"
msgstr "Festplatten-Standby nach"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hierarchy"
@@ -1153,6 +1168,9 @@ msgstr "Eins"
msgid "Online-Upgrade"
msgstr "Online-Aktualisierung"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1345,6 +1363,21 @@ msgstr ""
msgid "Recording"
msgstr "Aufnahmen"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Aufnahmen haben immer Vorrang"
@@ -1391,6 +1424,9 @@ msgstr ""
msgid "Right"
msgstr "Rechts"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1656,6 +1692,9 @@ msgstr "Zum vorhergehenden Unterkanal schalten"
msgid "Symbol Rate"
msgstr "Symbolrate"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "System"
@@ -1782,12 +1821,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Übertragungstyp"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Transponder type"
+
msgid "Tries left:"
msgstr "Übrige Versuche:"
@@ -2270,6 +2318,9 @@ msgstr "komplettes /etc Verzeichnis"
msgid "go to deep standby"
msgstr "Box abschalten"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "Radio hören"
@@ -2507,6 +2558,9 @@ msgstr ""
msgid "show event details"
msgstr "Sendungs-Details anzeigen"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "Ausschalten"
@@ -2730,9 +2784,6 @@ msgstr "umgeschaltet"
#~ msgid "Timeshifting"
#~ msgstr "Timeshift"
-#~ msgid "Transpondertype"
-#~ msgstr "Transponder type"
-
#~ msgid "Tuner Setup"
#~ msgstr "Tuner-Einstellungen"
diff --git a/po/en.po b/po/en.po
index 4b60b164..ecfa8137 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2005-11-17 20:53+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -375,6 +375,12 @@ msgstr ""
msgid "Code rate low"
msgstr ""
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr ""
@@ -418,6 +424,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr ""
@@ -739,6 +748,9 @@ msgstr ""
msgid "Goto position"
msgstr ""
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr ""
@@ -751,6 +763,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr ""
@@ -1104,6 +1119,9 @@ msgstr ""
msgid "Online-Upgrade"
msgstr ""
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1293,6 +1311,21 @@ msgstr ""
msgid "Recording"
msgstr ""
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1337,6 +1370,9 @@ msgstr ""
msgid "Right"
msgstr ""
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1599,6 +1635,9 @@ msgstr ""
msgid "Symbol Rate"
msgstr ""
+msgid "Symbolrate"
+msgstr "Symbolrate"
+
msgid "System"
msgstr ""
@@ -1719,12 +1758,21 @@ msgstr ""
msgid "Toneburst A/B"
msgstr ""
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr ""
msgid "Transponder"
msgstr ""
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr ""
@@ -2159,6 +2207,9 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2388,6 +2439,9 @@ msgstr ""
msgid "show event details"
msgstr ""
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
@@ -2479,6 +2533,3 @@ msgstr ""
msgid "zapped"
msgstr ""
-
-#~ msgid "Symbolrate"
-#~ msgstr "Symbolrate"
diff --git a/po/enigma2.pot b/po/enigma2.pot
index a48961f8..b420fdca 100644
--- a/po/enigma2.pot
+++ b/po/enigma2.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+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"
@@ -123,8 +123,8 @@ msgstr ""
msgid "<unknown>"
msgstr ""
-#: ../lib/python/Screens/Menu.py:125 ../lib/python/Screens/Menu.py:165
-#: ../lib/python/Screens/Menu.py:168 ../lib/python/Screens/Setup.py:117
+#: ../lib/python/Screens/Menu.py:123 ../lib/python/Screens/Menu.py:163
+#: ../lib/python/Screens/Menu.py:166 ../lib/python/Screens/Setup.py:117
msgid "??"
msgstr ""
@@ -132,13 +132,13 @@ msgstr ""
msgid "A"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1340
msgid ""
"A recording is currently running.\n"
"What do you want to do?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:549
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:554
msgid ""
"A recording is currently running. Please stop the recording before trying to "
"configure the positioner."
@@ -156,13 +156,13 @@ msgid ""
"Dreambox to standby. Do that now?"
msgstr ""
-#: ../SleepTimer.py:27
+#: ../SleepTimer.py:26
msgid ""
"A sleep timer want's to shut down\n"
"your Dreambox. Shutdown now?"
msgstr ""
-#: ../RecordTimer.py:178
+#: ../RecordTimer.py:179
msgid ""
"A timer failed to record!\n"
"Disable TV and try again?\n"
@@ -180,7 +180,7 @@ msgstr ""
msgid "About..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1167
+#: ../lib/python/Screens/InfoBarGenerics.py:1178
msgid "Activate Picture in Picture"
msgstr ""
@@ -201,11 +201,11 @@ msgstr ""
msgid "Add timer"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1476
+#: ../lib/python/Screens/InfoBarGenerics.py:1499
msgid "Add to bouquet"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1478
+#: ../lib/python/Screens/InfoBarGenerics.py:1501
msgid "Add to favourites"
msgstr ""
@@ -221,8 +221,8 @@ msgstr ""
msgid "Album:"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:600
-#: ../lib/python/Screens/ChannelSelection.py:749
+#: ../lib/python/Screens/ChannelSelection.py:609
+#: ../lib/python/Screens/ChannelSelection.py:758
msgid "All"
msgstr ""
@@ -243,7 +243,7 @@ msgstr ""
msgid "Ask before shutdown:"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1338
+#: ../lib/python/Screens/InfoBarGenerics.py:1361
msgid "Audio Options..."
msgstr ""
@@ -294,6 +294,7 @@ msgid "Band"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:243
+#: ../lib/python/Screens/ServiceInfo.py:138
msgid "Bandwidth"
msgstr ""
@@ -313,7 +314,7 @@ msgstr ""
msgid "CVBS"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:862
+#: ../lib/python/Screens/ChannelSelection.py:871
msgid "Cable"
msgstr ""
@@ -344,7 +345,7 @@ msgstr ""
msgid "Catalan"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:163
+#: ../lib/python/Screens/ChannelSelection.py:169
#: ../lib/python/Screens/ParentalControlSetup.py:20 ../data/
msgid "Change pin code"
msgstr ""
@@ -397,6 +398,14 @@ msgstr ""
msgid "Code rate low"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:140
+msgid "Coderate HP"
+msgstr ""
+
+#: ../lib/python/Screens/ServiceInfo.py:139
+msgid "Coderate LP"
+msgstr ""
+
#: ../lib/python/Screens/Satconfig.py:118
#: ../lib/python/Screens/Satconfig.py:120
msgid "Command order"
@@ -446,6 +455,10 @@ msgid ""
"retrying..."
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:141
+msgid "Constellation"
+msgstr ""
+
#: ../lib/python/Components/Harddisk.py:132
msgid "Create movie folder failed"
msgstr ""
@@ -542,7 +555,7 @@ msgstr ""
msgid "Disable"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1165
+#: ../lib/python/Screens/InfoBarGenerics.py:1176
msgid "Disable Picture in Picture"
msgstr ""
@@ -591,7 +604,7 @@ msgid ""
"After pressing OK, please wait!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1655
+#: ../lib/python/Screens/InfoBarGenerics.py:1678
msgid "Do you want to resume this playback?"
msgstr ""
@@ -635,7 +648,7 @@ msgstr ""
msgid "Dutch"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:870
+#: ../lib/python/Screens/ChannelSelection.py:879
msgid "E"
msgstr ""
@@ -697,7 +710,7 @@ msgstr ""
msgid "Enter main menu..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:163
+#: ../lib/python/Screens/ChannelSelection.py:169
msgid "Enter the service pin"
msgstr ""
@@ -724,7 +737,8 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:201
#: ../lib/python/Screens/ScanSetup.py:203
#: ../lib/python/Screens/ScanSetup.py:233
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:436
+#: ../lib/python/Screens/ServiceInfo.py:133
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:441
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140
msgid "FEC"
msgstr ""
@@ -733,7 +747,7 @@ msgstr ""
msgid "Fast DiSEqC"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:603
+#: ../lib/python/Screens/ChannelSelection.py:612
msgid "Favourites"
msgstr ""
@@ -748,8 +762,9 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:196
#: ../lib/python/Screens/ScanSetup.py:229
#: ../lib/python/Screens/ScanSetup.py:240
+#: ../lib/python/Screens/ServiceInfo.py:129
#: ../lib/python/Screens/TimerEntry.py:139
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:432
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:437
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:136
msgid "Frequency"
msgstr ""
@@ -801,15 +816,19 @@ msgstr ""
msgid "Getting plugin information. Please wait..."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:233
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:236
msgid "Goto 0"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:230
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:233
msgid "Goto position"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:143
+msgid "Guard Interval"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:248
msgid "Guard interval mode"
msgstr ""
@@ -820,12 +839,16 @@ msgstr ""
msgid "Harddisk"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:144
+msgid "Hierarchy Information"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:249
msgid "Hierarchy mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1304
-#: ../lib/python/Screens/InfoBarGenerics.py:1312
+#: ../lib/python/Screens/InfoBarGenerics.py:1315
+#: ../lib/python/Screens/InfoBarGenerics.py:1323
msgid "How many minutes do you want to record?"
msgstr ""
@@ -851,7 +874,7 @@ msgstr ""
msgid "Image-Upgrade"
msgstr ""
-#: ../RecordTimer.py:181
+#: ../RecordTimer.py:182
msgid ""
"In order to record a timer, the TV was switched to the recording service!\n"
msgstr ""
@@ -881,7 +904,7 @@ msgstr ""
msgid "Installing"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1214
+#: ../lib/python/Screens/InfoBarGenerics.py:1225
msgid "Instant Record..."
msgstr ""
@@ -892,7 +915,8 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:197
#: ../lib/python/Screens/ScanSetup.py:230
#: ../lib/python/Screens/ScanSetup.py:242
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:433
+#: ../lib/python/Screens/ServiceInfo.py:132
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:438
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:137
msgid "Inversion"
msgstr ""
@@ -926,23 +950,23 @@ msgstr ""
msgid "Latitude"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1400
msgid "Left"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:225
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:228
msgid "Limit east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:224
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:227
msgid "Limit west"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:223
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:226
msgid "Limits off"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:226
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:229
msgid "Limits on"
msgstr ""
@@ -971,7 +995,7 @@ msgstr ""
msgid "Make this mark just a mark"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:454
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:459
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
msgid "Manual transponder"
msgstr ""
@@ -987,6 +1011,7 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:204
#: ../lib/python/Screens/ScanSetup.py:232
#: ../lib/python/Screens/ScanSetup.py:246
+#: ../lib/python/Screens/ServiceInfo.py:134
msgid "Modulation"
msgstr ""
@@ -1009,15 +1034,15 @@ msgstr ""
msgid "Mount failed"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1173
+#: ../lib/python/Screens/InfoBarGenerics.py:1184
msgid "Move Picture in Picture"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:216
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:219
msgid "Move east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:213
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:216
msgid "Move west"
msgstr ""
@@ -1041,7 +1066,7 @@ msgstr ""
msgid "N/A"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:529
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:534
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:253
msgid "NIM "
msgstr ""
@@ -1071,7 +1096,7 @@ msgstr ""
msgid "Network scan"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:854
+#: ../lib/python/Screens/ChannelSelection.py:863
msgid "New"
msgstr ""
@@ -1091,21 +1116,21 @@ msgstr ""
msgid "No"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1324
+#: ../lib/python/Screens/InfoBarGenerics.py:1335
msgid "No HDD found or HDD not initialized!"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1879
+#: ../lib/python/Screens/InfoBarGenerics.py:1902
msgid ""
"No data on transponder!\n"
"(Timeout reading PAT)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1257
+#: ../lib/python/Screens/InfoBarGenerics.py:1268
msgid "No event info found, recording indefinitely."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1877
+#: ../lib/python/Screens/InfoBarGenerics.py:1900
msgid "No free tuner!"
msgstr ""
@@ -1114,7 +1139,7 @@ msgid ""
"No packages were upgraded yet. So you can check your network and try again."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:546
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:551
msgid "No positioner capable frontend found."
msgstr ""
@@ -1122,7 +1147,7 @@ msgstr ""
msgid "No satellite frontend found!!"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:561
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:566
msgid "No tuner is configured for use with a diseqc positioner!"
msgstr ""
@@ -1175,6 +1200,10 @@ msgstr ""
msgid "Online-Upgrade"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:131
+msgid "Orbital Position"
+msgstr ""
+
#: ../lib/python/Screens/MovieSelection.py:194
msgid "Other..."
msgstr ""
@@ -1183,7 +1212,7 @@ msgstr ""
msgid "PAL"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:79
+#: ../lib/python/Screens/ServiceInfo.py:84
msgid "PIDs"
msgstr ""
@@ -1212,15 +1241,15 @@ msgstr ""
msgid "Play recorded movies..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1107
+#: ../lib/python/Screens/InfoBarGenerics.py:1118
msgid "Please choose an extension..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:151
+#: ../lib/python/Screens/ChannelSelection.py:157
msgid "Please enter a name for the new bouquet"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:197
+#: ../lib/python/Screens/ChannelSelection.py:203
msgid "Please enter a name for the new marker"
msgstr ""
@@ -1240,7 +1269,7 @@ msgstr ""
msgid "Please select a subservice to record..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1485
+#: ../lib/python/Screens/InfoBarGenerics.py:1508
#: ../lib/python/Screens/SubservicesQuickzap.py:97
msgid "Please select a subservice..."
msgstr ""
@@ -1261,11 +1290,12 @@ msgid "Please wait... Loading list..."
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:199
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:435
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:440
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:139
msgid "Polarity"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:135
#: ../lib/python/Components/NimManager.py:749
msgid "Polarization"
msgstr ""
@@ -1290,24 +1320,24 @@ msgstr ""
msgid "Positioner"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175
msgid "Positioner fine movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
msgid "Positioner movement"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:565
#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:570
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:575
msgid "Positioner setup"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177
msgid "Positioner storage"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:455
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:460
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:171
msgid "Predefined transponder"
msgstr ""
@@ -1340,12 +1370,12 @@ msgstr ""
msgid "Protect setup"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:602
-#: ../lib/python/Screens/ChannelSelection.py:745
+#: ../lib/python/Screens/ChannelSelection.py:611
+#: ../lib/python/Screens/ChannelSelection.py:754
msgid "Provider"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:852
+#: ../lib/python/Screens/ChannelSelection.py:861
msgid "Providers"
msgstr ""
@@ -1353,9 +1383,9 @@ msgstr ""
msgid "Quick"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1476
-#: ../lib/python/Screens/InfoBarGenerics.py:1478
-#: ../lib/python/Screens/InfoBarGenerics.py:1481
+#: ../lib/python/Screens/InfoBarGenerics.py:1499
+#: ../lib/python/Screens/InfoBarGenerics.py:1501
+#: ../lib/python/Screens/InfoBarGenerics.py:1504
msgid "Quickzap"
msgstr ""
@@ -1395,6 +1425,24 @@ msgstr ""
msgid "Recording"
msgstr ""
+#: ../lib/python/Screens/Standby.py:103
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+#: ../lib/python/Screens/Standby.py:107
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+#: ../lib/python/Screens/Standby.py:101
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
#: ../lib/python/Screens/ParentalControlSetup.py:217
msgid "Reenter new pin"
msgstr ""
@@ -1432,10 +1480,14 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1400
msgid "Right"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:136
+msgid "Rolloff"
+msgstr ""
+
#: ../lib/python/Screens/Subtitles.py:29
msgid "Running"
msgstr ""
@@ -1454,13 +1506,13 @@ 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:429
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:434
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:133
msgid "Satellite"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:601
-#: ../lib/python/Screens/ChannelSelection.py:747
+#: ../lib/python/Screens/ChannelSelection.py:610
+#: ../lib/python/Screens/ChannelSelection.py:756
msgid "Satellites"
msgstr ""
@@ -1483,19 +1535,19 @@ msgstr ""
msgid "Scan NIM"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:215
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:218
msgid "Search east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:214
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:217
msgid "Search west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1389
+#: ../lib/python/Screens/InfoBarGenerics.py:1412
msgid "Select audio mode"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1378
+#: ../lib/python/Screens/InfoBarGenerics.py:1401
msgid "Select audio track"
msgstr ""
@@ -1507,21 +1559,21 @@ msgstr ""
msgid "Sequence repeat"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1511
+#: ../lib/python/Screens/InfoBarGenerics.py:1534
msgid "Service has been added to the favourites."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1517
+#: ../lib/python/Screens/InfoBarGenerics.py:1540
msgid "Service has been added to the selected bouquet."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1881
+#: ../lib/python/Screens/InfoBarGenerics.py:1904
msgid ""
"Service invalid!\n"
"(Timeout reading PMT)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1880
+#: ../lib/python/Screens/InfoBarGenerics.py:1903
msgid ""
"Service not found!\n"
"(SID not found in PAT)"
@@ -1531,15 +1583,15 @@ msgstr ""
msgid "Service scan type needed"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:78 ../data/
+#: ../lib/python/Screens/ServiceInfo.py:83 ../data/
msgid "Serviceinfo"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:856
+#: ../lib/python/Screens/ChannelSelection.py:865
msgid "Services"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:176
msgid "Set limits"
msgstr ""
@@ -1590,7 +1642,7 @@ msgstr ""
msgid "Single transponder"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1143 ../data/
+#: ../lib/python/Screens/InfoBarGenerics.py:1154 ../data/
msgid "Sleep Timer"
msgstr ""
@@ -1639,7 +1691,7 @@ msgstr ""
msgid "Start"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1349
msgid "Start recording?"
msgstr ""
@@ -1651,26 +1703,26 @@ msgstr ""
msgid "Step "
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:220
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:223
msgid "Step east"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:219
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:222
msgid "Step west"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1377
+#: ../lib/python/Screens/InfoBarGenerics.py:1400
msgid "Stereo"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:208
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:209
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:210
#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:211
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:212
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:213
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:214
msgid "Stop"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:977
+#: ../lib/python/Screens/InfoBarGenerics.py:988
msgid "Stop Timeshift?"
msgstr ""
@@ -1678,7 +1730,7 @@ msgstr ""
msgid "Stop playing this movie?"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:229
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:232
msgid "Store position"
msgstr ""
@@ -1686,7 +1738,7 @@ msgstr ""
msgid "Stored position"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1407
+#: ../lib/python/Screens/InfoBarGenerics.py:1430
msgid "Subservice list..."
msgstr ""
@@ -1701,7 +1753,7 @@ msgstr ""
msgid "Sunday"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1170
+#: ../lib/python/Screens/InfoBarGenerics.py:1181
msgid "Swap Services"
msgstr ""
@@ -1709,22 +1761,30 @@ msgstr ""
msgid "Swedish"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1412
+#: ../lib/python/Screens/InfoBarGenerics.py:1435
msgid "Switch to next subservice"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1413
+#: ../lib/python/Screens/InfoBarGenerics.py:1436
msgid "Switch to previous subservice"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:198
#: ../lib/python/Screens/ScanSetup.py:231
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:434
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:439
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:138
msgid "Symbol Rate"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:864
+#: ../lib/python/Screens/ServiceInfo.py:130
+msgid "Symbolrate"
+msgstr ""
+
+#: ../lib/python/Screens/ServiceInfo.py:137 ../data/
+msgid "System"
+msgstr ""
+
+#: ../lib/python/Screens/ChannelSelection.py:873
msgid "Terrestrial"
msgstr ""
@@ -1741,7 +1801,7 @@ msgstr ""
msgid "The pin code has been changed successfully."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:170
+#: ../lib/python/Screens/ChannelSelection.py:176
#: ../lib/python/Screens/ParentalControlSetup.py:38
#: ../lib/python/Components/ParentalControl.py:141
msgid "The pin code you entered is wrong."
@@ -1787,7 +1847,7 @@ msgstr ""
msgid "Timer status:"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:948
+#: ../lib/python/Screens/InfoBarGenerics.py:959
msgid "Timeshift not possible!"
msgstr ""
@@ -1812,16 +1872,28 @@ msgstr ""
msgid "Toneburst A/B"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:142
+msgid "Transmission Mode"
+msgstr ""
+
#: ../lib/python/Screens/ScanSetup.py:247
msgid "Transmission mode"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:80
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:438
+#: ../lib/python/Screens/ServiceInfo.py:85
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:443
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:142
msgid "Transponder"
msgstr ""
+#: ../lib/python/Screens/ServiceInfo.py:128
+msgid "Transponder Type"
+msgstr ""
+
+#: ../lib/python/Screens/ScanSetup.py:193
+msgid "Transpondertype"
+msgstr ""
+
#: ../lib/python/Screens/InputBox.py:165
msgid "Tries left:"
msgstr ""
@@ -1837,14 +1909,14 @@ msgstr ""
msgid "Tuesday"
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:202
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:427
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:205
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:432
#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:131
msgid "Tune"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1878
+#: ../lib/python/Screens/InfoBarGenerics.py:1901
msgid "Tune failed!"
msgstr ""
@@ -1853,7 +1925,7 @@ msgstr ""
msgid "Tuner"
msgstr ""
-#: ../lib/python/Screens/ServiceInfo.py:81
+#: ../lib/python/Screens/ServiceInfo.py:86
msgid "Tuner status"
msgstr ""
@@ -1941,7 +2013,7 @@ msgstr ""
msgid "User defined"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1793
+#: ../lib/python/Screens/InfoBarGenerics.py:1816
msgid "View teletext..."
msgstr ""
@@ -1949,7 +2021,7 @@ msgstr ""
msgid "Voltage mode"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:868
+#: ../lib/python/Screens/ChannelSelection.py:877
msgid "W"
msgstr ""
@@ -2016,7 +2088,7 @@ msgid ""
"Press OK to start upgrade."
msgstr ""
-#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:135
+#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:138
msgid "Zap back to service before positioner setup?"
msgstr ""
@@ -2024,31 +2096,31 @@ msgstr ""
msgid "Zap back to service before satfinder?"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:471
+#: ../lib/python/Screens/ChannelSelection.py:479
msgid "[alternative edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:475
+#: ../lib/python/Screens/ChannelSelection.py:483
msgid "[bouquet edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:477
+#: ../lib/python/Screens/ChannelSelection.py:485
msgid "[favourite edit]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:568
+#: ../lib/python/Screens/ChannelSelection.py:577
msgid "[move mode]"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:139
+#: ../lib/python/Screens/ChannelSelection.py:142
msgid "abort alternatives edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:133
+#: ../lib/python/Screens/ChannelSelection.py:136
msgid "abort bouquet edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:136
+#: ../lib/python/Screens/ChannelSelection.py:139
msgid "abort favourites edit"
msgstr ""
@@ -2056,11 +2128,11 @@ msgstr ""
msgid "about to start"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:126
+#: ../lib/python/Screens/ChannelSelection.py:129
msgid "add alternatives"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:108
+#: ../lib/python/Screens/ChannelSelection.py:111
msgid "add bouquet"
msgstr ""
@@ -2072,34 +2144,34 @@ msgstr ""
msgid "add file to playlist"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:116
+#: ../lib/python/Screens/ChannelSelection.py:119
msgid "add marker"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1345
+#: ../lib/python/Screens/InfoBarGenerics.py:1352
msgid "add recording (enter recording duration)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1343
+#: ../lib/python/Screens/InfoBarGenerics.py:1350
msgid "add recording (indefinitely)"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1344
+#: ../lib/python/Screens/InfoBarGenerics.py:1351
msgid "add recording (stop after current event)"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:94
+#: ../lib/python/Screens/ChannelSelection.py:97
msgid "add service to bouquet"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:96
+#: ../lib/python/Screens/ChannelSelection.py:99
msgid "add service to favourites"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:90
+#: ../lib/python/Screens/ChannelSelection.py:93
msgid "add to parental protection"
msgstr ""
@@ -2114,7 +2186,7 @@ msgid ""
"following backup:\n"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:141
+#: ../lib/python/Screens/ChannelSelection.py:144
#: ../lib/python/Screens/MovieSelection.py:25
#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:50
msgid "back"
@@ -2132,7 +2204,7 @@ msgstr ""
msgid "by Exif"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1342
msgid "change recording (duration)"
msgstr ""
@@ -2152,11 +2224,11 @@ msgstr ""
msgid "complex"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:600
+#: ../lib/python/Screens/InfoBarGenerics.py:601
msgid "continue"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:100
+#: ../lib/python/Screens/ChannelSelection.py:103
msgid "copy to bouquets"
msgstr ""
@@ -2181,7 +2253,7 @@ msgstr ""
msgid "disable"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:128
+#: ../lib/python/Screens/ChannelSelection.py:131
msgid "disable move mode"
msgstr ""
@@ -2189,12 +2261,12 @@ msgstr ""
msgid "do not change"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1346
#: ../lib/python/Screens/TimerEntry.py:87
msgid "do nothing"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1330
+#: ../lib/python/Screens/InfoBarGenerics.py:1353
msgid "don't record"
msgstr ""
@@ -2202,7 +2274,7 @@ msgstr ""
msgid "done!"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:122
+#: ../lib/python/Screens/ChannelSelection.py:125
msgid "edit alternatives"
msgstr ""
@@ -2214,23 +2286,23 @@ msgstr ""
msgid "enable"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:118
+#: ../lib/python/Screens/ChannelSelection.py:121
msgid "enable bouquet edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:120
+#: ../lib/python/Screens/ChannelSelection.py:123
msgid "enable favourite edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:114
+#: ../lib/python/Screens/ChannelSelection.py:117
msgid "enable move mode"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:138
+#: ../lib/python/Screens/ChannelSelection.py:141
msgid "end alternatives edit"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:132
+#: ../lib/python/Screens/ChannelSelection.py:135
msgid "end bouquet edit"
msgstr ""
@@ -2239,7 +2311,7 @@ msgstr ""
msgid "end cut here"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:135
+#: ../lib/python/Screens/ChannelSelection.py:138
msgid "end favourites edit"
msgstr ""
@@ -2259,6 +2331,10 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
+#: ../lib/python/Screens/TimerEntry.py:87
+msgid "go to standby"
+msgstr ""
+
#: ../lib/python/Screens/InfoBar.py:59
msgid "hear radio..."
msgstr ""
@@ -2299,7 +2375,7 @@ msgstr ""
msgid "leave movie player..."
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1411
msgid "left"
msgstr ""
@@ -2357,7 +2433,7 @@ msgstr ""
msgid "next channel in history"
msgstr ""
-#: ../lib/python/Screens/MessageBox.py:46
+#: ../lib/python/Screens/MessageBox.py:39
#: ../lib/python/Screens/ScanSetup.py:341
#: ../lib/python/Screens/ScanSetup.py:586
#: ../lib/python/Screens/SleepTimerEdit.py:63
@@ -2401,16 +2477,16 @@ msgstr ""
#: ../lib/python/Screens/ScanSetup.py:360
#: ../lib/python/Screens/ScanSetup.py:369
#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/UsageConfig.py:24
#: ../lib/python/Components/config.py:281
+#: ../lib/python/Components/UsageConfig.py:24
msgid "off"
msgstr ""
#: ../lib/python/Screens/ScanSetup.py:360
#: ../lib/python/Screens/ScanSetup.py:369
#: ../lib/python/Screens/ScanSetup.py:377
-#: ../lib/python/Components/UsageConfig.py:24
#: ../lib/python/Components/config.py:281
+#: ../lib/python/Components/UsageConfig.py:24
msgid "on"
msgstr ""
@@ -2439,6 +2515,7 @@ msgid "pass"
msgstr ""
#: ../lib/python/Screens/InfoBarGenerics.py:599
+#: ../lib/python/Screens/InfoBarGenerics.py:600
msgid "pause"
msgstr ""
@@ -2470,11 +2547,11 @@ msgstr ""
msgid "remove after this position"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:124
+#: ../lib/python/Screens/ChannelSelection.py:127
msgid "remove all alternatives"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:102
+#: ../lib/python/Screens/ChannelSelection.py:105
msgid "remove all new found flags"
msgstr ""
@@ -2482,16 +2559,16 @@ msgstr ""
msgid "remove before this position"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:104
-#: ../lib/python/Screens/ChannelSelection.py:109
+#: ../lib/python/Screens/ChannelSelection.py:107
+#: ../lib/python/Screens/ChannelSelection.py:112
msgid "remove entry"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:92
+#: ../lib/python/Screens/ChannelSelection.py:95
msgid "remove from parental protection"
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:106
+#: ../lib/python/Screens/ChannelSelection.py:109
msgid "remove new found flag"
msgstr ""
@@ -2503,7 +2580,7 @@ msgstr ""
msgid "repeated"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1411
msgid "right"
msgstr ""
@@ -2568,7 +2645,7 @@ msgstr ""
msgid "show EPG..."
msgstr ""
-#: ../lib/python/Screens/ChannelSelection.py:123
+#: ../lib/python/Screens/ChannelSelection.py:126
msgid "show alternatives"
msgstr ""
@@ -2576,7 +2653,11 @@ msgstr ""
msgid "show event details"
msgstr ""
-#: ../SleepTimer.py:55
+#: ../lib/python/Screens/ChannelSelection.py:86
+msgid "show transponder info"
+msgstr ""
+
+#: ../SleepTimer.py:57
msgid "shutdown"
msgstr ""
@@ -2587,15 +2668,15 @@ msgstr ""
msgid "simple"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:605
+#: ../lib/python/Screens/InfoBarGenerics.py:606
msgid "skip backward"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:602
+#: ../lib/python/Screens/InfoBarGenerics.py:603
msgid "skip forward"
msgstr ""
-#: ../SleepTimer.py:55
+#: ../SleepTimer.py:57
msgid "standby"
msgstr ""
@@ -2604,19 +2685,19 @@ msgstr ""
msgid "start cut here"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:920
+#: ../lib/python/Screens/InfoBarGenerics.py:931
msgid "start timeshift"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1388
+#: ../lib/python/Screens/InfoBarGenerics.py:1411
msgid "stereo"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1328
+#: ../lib/python/Screens/InfoBarGenerics.py:1341
msgid "stop recording"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:921
+#: ../lib/python/Screens/InfoBarGenerics.py:932
msgid "stop timeshift"
msgstr ""
@@ -2656,7 +2737,7 @@ msgstr ""
msgid "vertical"
msgstr ""
-#: ../lib/python/Screens/InfoBarGenerics.py:1055
+#: ../lib/python/Screens/InfoBarGenerics.py:1066
msgid "view extensions..."
msgstr ""
@@ -2680,7 +2761,7 @@ msgstr ""
msgid "whitelist"
msgstr ""
-#: ../lib/python/Screens/MessageBox.py:46
+#: ../lib/python/Screens/MessageBox.py:39
#: ../lib/python/Screens/ScanSetup.py:341
#: ../lib/python/Screens/ScanSetup.py:586
#: ../lib/python/Screens/SleepTimerEdit.py:61
@@ -2858,7 +2939,7 @@ msgid ""
msgstr ""
#: ../data/
-msgid "Mute"
+msgid "Yes, do another manual scan now"
msgstr ""
#: ../data/
@@ -2866,6 +2947,10 @@ msgid "Service Searching"
msgstr ""
#: ../data/
+msgid "Mute"
+msgstr ""
+
+#: ../data/
msgid ""
"Welcome to the Image upgrade wizard. The wizard will assist you in upgrading "
"the firmware of your Dreambox by providing a backup facility for your "
@@ -2904,10 +2989,6 @@ msgid "#ffffffff"
msgstr ""
#: ../data/
-msgid "System"
-msgstr ""
-
-#: ../data/
msgid "Use power measurement"
msgstr ""
@@ -2926,7 +3007,11 @@ msgid "Manual Scan"
msgstr ""
#: ../data/
-msgid "Timer Edit"
+msgid ""
+"Welcome.\n"
+"\n"
+"This start wizard will guide you through the basic setup of your Dreambox.\n"
+"Press the OK button on your remote control to move to the next step."
msgstr ""
#: ../data/
@@ -2942,10 +3027,6 @@ msgid "Network..."
msgstr ""
#: ../data/
-msgid "Tuner configuration"
-msgstr ""
-
-#: ../data/
msgid "select Slot"
msgstr ""
@@ -2986,10 +3067,6 @@ msgid "Parental control services Editor"
msgstr ""
#: ../data/
-msgid "Yes, do another manual scan now"
-msgstr ""
-
-#: ../data/
msgid "Activate network settings"
msgstr ""
@@ -3062,10 +3139,6 @@ msgid "Timezone"
msgstr ""
#: ../data/
-msgid "Message"
-msgstr ""
-
-#: ../data/
msgid "Seek"
msgstr ""
@@ -3243,6 +3316,10 @@ msgid "WSS on 4:3"
msgstr ""
#: ../data/
+msgid "Tuner configuration"
+msgstr ""
+
+#: ../data/
msgid "Choose bouquet"
msgstr ""
@@ -3347,11 +3424,7 @@ msgid "Alpha"
msgstr ""
#: ../data/
-msgid ""
-"Welcome.\n"
-"\n"
-"This start wizard will guide you through the basic setup of your Dreambox.\n"
-"Press the OK button on your remote control to move to the next step."
+msgid "Timer Edit"
msgstr ""
#: ../data/
@@ -3371,6 +3444,10 @@ msgid "config menu"
msgstr ""
#: ../data/
+msgid "Message"
+msgstr ""
+
+#: ../data/
msgid "Finetune"
msgstr ""
diff --git a/po/es.po b/po/es.po
index b20521c6..7f43f229 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-12-23 04:32+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-22 16:36+0200\n"
"Last-Translator: Jose Juan Zapater <josej@zapater.fdns.net>\n"
"Language-Team: none\n"
@@ -600,9 +600,6 @@ msgstr ""
"¿Actualizar tu Dreambox?\n"
"¡Después de pulsar OK, espere!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "¿Quiere ver un tutorial de la lista de corte?"
-
msgid "Do you want to view a tutorial?"
msgstr "¿Quiere ver un tutorial?"
@@ -1345,6 +1342,21 @@ msgstr ""
msgid "Recording"
msgstr "Grabando"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Las grabaciones siempre tienen prioridad"
@@ -2275,6 +2287,9 @@ msgstr "todo el directorio /etc"
msgid "go to deep standby"
msgstr "ir a pausa profunda"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "escuchar radio..."
@@ -2610,5 +2625,8 @@ msgstr "zapeado"
#~ msgid "12V Output"
#~ msgstr "12V Salida"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "¿Quiere ver un tutorial de la lista de corte?"
+
#~ msgid "copy to favourites"
#~ msgstr "copiar a favoritos"
diff --git a/po/fi.po b/po/fi.po
index b4c98309..7b9eeb7a 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-11-07 19:34+0200\n"
"Last-Translator: Sauli Halttu <salde@salde.net>\n"
"Language-Team: none\n"
@@ -383,6 +383,12 @@ msgstr "Koodin taso korkea"
msgid "Code rate low"
msgstr "Koodin taso alhainen"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Väriformaatti"
@@ -426,6 +432,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrasti"
@@ -757,6 +766,9 @@ msgstr "Goto 0"
msgid "Goto position"
msgstr "Mene sijaintiin"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Suoja-aika asetus"
@@ -769,6 +781,9 @@ msgstr "Kiintolevyn asetukset"
msgid "Harddisk standby after"
msgstr "Kiintolevyn valmiustila"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hierarkia-tila"
@@ -1128,6 +1143,9 @@ msgstr "Yksi"
msgid "Online-Upgrade"
msgstr "Online-päivitys"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Muu..."
@@ -1320,6 +1338,21 @@ msgstr ""
msgid "Recording"
msgstr "Tallennetaan"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Tallennuksilla on aina etuoikeus"
@@ -1366,6 +1399,9 @@ msgstr ""
msgid "Right"
msgstr "Oikea"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Käytössä"
@@ -1631,6 +1667,9 @@ msgstr "Vaihda edelliseen alipalveluun"
msgid "Symbol Rate"
msgstr "Symboolinopeus"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Järjestelmä"
@@ -1755,12 +1794,21 @@ msgstr "Äänipurske"
msgid "Toneburst A/B"
msgstr "Äänipurske A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Lähetystapa"
msgid "Transponder"
msgstr "Transponderi"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr "Yrityksiä jäljellä:"
@@ -2232,6 +2280,9 @@ msgstr "täysi /etc hakemisto"
msgid "go to deep standby"
msgstr "mene syvään valmiustilaan"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "kuuntele radiota..."
@@ -2469,6 +2520,9 @@ msgstr ""
msgid "show event details"
msgstr "näytä ohjelman tarkemmat tiedot"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index aea70070..8c7eba79 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-06-13 18:14+0200\n"
"Last-Translator: DonHora <donhora@myrealbox.com>\n"
"Language-Team: french\n"
@@ -390,6 +390,12 @@ msgstr "Débit symbole haut"
msgid "Code rate low"
msgstr "Débit symbole bas"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Format de couleur"
@@ -434,6 +440,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Contraste"
@@ -766,6 +775,9 @@ msgstr "Aller à 0"
msgid "Goto position"
msgstr "Aller à la position"
+msgid "Guard Interval"
+msgstr ""
+
# TODO : À vérifier
msgid "Guard interval mode"
msgstr "Intervalle de garde"
@@ -779,6 +791,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
# TODO : À vérifier
msgid "Hierarchy mode"
msgstr "Hiérarchie"
@@ -1140,6 +1155,9 @@ msgstr "Un"
msgid "Online-Upgrade"
msgstr "Mise à jour en ligne"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1333,6 +1351,21 @@ msgstr ""
msgid "Recording"
msgstr "Enregistrement"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1379,6 +1412,9 @@ msgstr ""
msgid "Right"
msgstr "Droite"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1650,6 +1686,9 @@ msgstr "Basculer vers le sous-service précédent"
msgid "Symbol Rate"
msgstr "Débit symbole"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Système"
@@ -1779,12 +1818,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Mode de transmission"
msgid "Transponder"
msgstr "Transpondeur"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Type de transpondeur"
+
msgid "Tries left:"
msgstr ""
@@ -2270,6 +2318,9 @@ msgstr "répertoire /etc entier"
msgid "go to deep standby"
msgstr "mettre en veille profonde"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2511,6 +2562,9 @@ msgstr ""
msgid "show event details"
msgstr "afficher les détails de l'émission"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
@@ -2719,9 +2773,6 @@ msgstr "zappé"
#~ msgid "Timeshifting"
#~ msgstr "Pause du direct"
-#~ msgid "Transpondertype"
-#~ msgstr "Type de transpondeur"
-
#~ msgid "UHF Modulator"
#~ msgstr "Modulateur UHF"
diff --git a/po/hr.po b/po/hr.po
index 1b9966b6..7ffe8574 100755
--- a/po/hr.po
+++ b/po/hr.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-22 03:10+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-22 01:07+0100\n"
"Last-Translator: Jurica\n"
"Language-Team: <jurica@clarkdigital.com>\n"
@@ -391,6 +391,12 @@ msgstr "Visoka Kod rata"
msgid "Code rate low"
msgstr "Niska kod rata"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Kolor format"
@@ -437,6 +443,9 @@ msgstr ""
"neuspješno! (%s)\n"
"pokušavam ponovno..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrast"
@@ -597,9 +606,6 @@ msgstr ""
"Da li želite nadograditi vaš Dreambox?\n"
"Nakon pritiska tipke OK, molim pričekajte!"
-msgid "Do you want to view a cutlist tutorial?"
-msgstr "Dali želite pregledati skraćeni vodič"
-
msgid "Do you want to view a tutorial?"
msgstr "Da li želite pogledati vodič?"
@@ -782,6 +788,9 @@ msgstr "Pođi do 0"
msgid "Goto position"
msgstr "Goto pozicija"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Zaštitni intervalni mod"
@@ -794,6 +803,9 @@ msgstr "Postavke tvrdog diska"
msgid "Harddisk standby after"
msgstr "Isključi tvrdi disk nakon"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "mod hierhiji"
@@ -1157,6 +1169,9 @@ msgstr "Jedan"
msgid "Online-Upgrade"
msgstr "Online-nadogradnja"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Ostalo..."
@@ -1349,6 +1364,21 @@ msgstr "Snimam datoteke..."
msgid "Recording"
msgstr "Snimanje"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Snimanje uvijek ima prioritet"
@@ -1395,6 +1425,9 @@ msgstr ""
msgid "Right"
msgstr "Desno"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Pokrenuto"
@@ -1664,6 +1697,9 @@ msgstr "prebaci u predhodnu poduslugu "
msgid "Symbol Rate"
msgstr "Simbol rata"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Sistem "
@@ -1789,12 +1825,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Mod transmisije"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr "Pokušaja ostalo:"
@@ -2278,6 +2323,9 @@ msgstr "puni /etc direktorij"
msgid "go to deep standby"
msgstr "pokreni Isključivanje Dreamboxa"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "slušaj radio..."
@@ -2517,6 +2565,9 @@ msgstr "prikaži alternative"
msgid "show event details"
msgstr "prikažii proširene infor. "
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "isključi"
@@ -2650,6 +2701,9 @@ msgstr "prebačen"
#~ msgid "Default"
#~ msgstr "Tvorni?ko"
+#~ msgid "Do you want to view a cutlist tutorial?"
+#~ msgstr "Dali želite pregledati skraćeni vodič"
+
#~ msgid "Equal to Socket A"
#~ msgstr "Jednako kao Utor A"
diff --git a/po/hu.po b/po/hu.po
index cb0cc5a0..199acc0c 100755
--- a/po/hu.po
+++ b/po/hu.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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-02 16:37+0100\n"
"Last-Translator: MediaVox-98 (Laszlo Balogh) (www.mediavox.hu) "
"<info@mediavox.hu>\n"
@@ -395,6 +395,12 @@ msgstr "Felsö kódarány"
msgid "Code rate low"
msgstr "Alsó kódarány"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Színformátum"
@@ -441,6 +447,9 @@ msgstr ""
"sikertelen! (%s)\n"
"újra próbálkozom..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontraszt"
@@ -783,6 +792,9 @@ msgstr "Menj a 0 pozícióra"
msgid "Goto position"
msgstr "Pozícióra ugrás"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Védelmi intervallum mód"
@@ -795,6 +807,9 @@ msgstr "HDD beállítások"
msgid "Harddisk standby after"
msgstr "HDD leállítás a megadott idö után"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hierarchikus mód"
@@ -1152,6 +1167,9 @@ msgstr "Egy"
msgid "Online-Upgrade"
msgstr "Online-Frissítés"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Egyéb..."
@@ -1345,6 +1363,21 @@ msgstr "Felvett fájlok..."
msgid "Recording"
msgstr "Felvétel"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "A felvételnek mindíg elsöbbsége van"
@@ -1391,6 +1424,9 @@ msgstr ""
msgid "Right"
msgstr "Jobb"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Futó"
@@ -1656,6 +1692,9 @@ msgstr "Ugrás az elözö alcsatornára"
msgid "Symbol Rate"
msgstr "Symbol Rate"
+msgid "Symbolrate"
+msgstr "Symbolrate"
+
msgid "System"
msgstr "Rendszer"
@@ -1780,12 +1819,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Adási mód"
msgid "Transponder"
msgstr "Transzponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr "Hátralevö próbálkozások száma:"
@@ -2266,6 +2314,9 @@ msgstr "az /etc könyvtár tele van"
msgid "go to deep standby"
msgstr "teljes kikapcsoláshoz ugrás"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "rádió hallgatása..."
@@ -2505,6 +2556,9 @@ msgstr ""
msgid "show event details"
msgstr "részletes adatok mutatása"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "kikapcsolás"
@@ -2623,6 +2677,3 @@ msgstr "zap-elt"
#~ msgid "Select reference service"
#~ msgstr "Referencia mühold kiválasztása"
-
-#~ msgid "Symbolrate"
-#~ msgstr "Symbolrate"
diff --git a/po/is.po b/po/is.po
index eaf54de7..9b146da8 100755
--- a/po/is.po
+++ b/po/is.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Icelandic translation v.1.22b\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-11-18 22:50-0000\n"
"Last-Translator: Baldur Þór Sveinsson <baddi@oreind.is>\n"
"Language-Team: Polar Team <baddi@oreind.is>\n"
@@ -397,6 +397,12 @@ msgstr "Gagna hraði, hár"
msgid "Code rate low"
msgstr "Gagna hraði, lár"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Lita kerfi"
@@ -440,6 +446,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Skerpa"
@@ -779,6 +788,9 @@ msgstr "Fara 0"
msgid "Goto position"
msgstr "Fara á staðsetningu"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Guard millibils hamur"
@@ -791,6 +803,9 @@ msgstr "Uppsetning harða disks"
msgid "Harddisk standby after"
msgstr "Harði diskur í biðstöðu eftir"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Flokkunar hamur"
@@ -1149,6 +1164,9 @@ msgstr "Einn"
msgid "Online-Upgrade"
msgstr "Uppfærsla frá neti"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Annað..."
@@ -1341,6 +1359,21 @@ msgstr ""
msgid "Recording"
msgstr "Upptaka"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Upptaka hefur alltaf forgang"
@@ -1386,6 +1419,9 @@ msgstr ""
msgid "Right"
msgstr "Hægri"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Keyri"
@@ -1651,6 +1687,9 @@ msgstr "Skipta á fyrri undirrás"
msgid "Symbol Rate"
msgstr "Gagnahraði"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Kerfi"
@@ -1773,12 +1812,21 @@ msgstr "Tónstýring"
msgid "Toneburst A/B"
msgstr "Tón stýring A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Sendi stilling"
msgid "Transponder"
msgstr "Sendir"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Gerð sendis"
+
msgid "Tries left:"
msgstr "Tilraunir eftir:"
@@ -2249,6 +2297,9 @@ msgstr "alla /etc möppuna"
msgid "go to deep standby"
msgstr "fara í djúpsvefn"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "hlusta á útvarp...."
@@ -2488,6 +2539,9 @@ msgstr ""
msgid "show event details"
msgstr "sýna atriði nánar"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "slökkva"
@@ -2764,9 +2818,6 @@ msgstr "stokkið"
#~ msgid "Timeshifting"
#~ msgstr "Lifandi pása"
-#~ msgid "Transpondertype"
-#~ msgstr "Gerð sendis"
-
#~ msgid "UHF Modulator"
#~ msgstr "UHF Mótari"
diff --git a/po/it.po b/po/it.po
index d577ed4e..9eadc669 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-04-01 02:52+0100\n"
"Last-Translator: Musicbob <musicbob@satnews.tv.it>\n"
"Language-Team: none\n"
@@ -386,6 +386,12 @@ msgstr ""
msgid "Code rate low"
msgstr ""
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Formato colore"
@@ -429,6 +435,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Contrasto"
@@ -758,6 +767,9 @@ msgstr ""
msgid "Goto position"
msgstr "Posizione GoTo"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr ""
@@ -770,6 +782,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Modo gerarchico"
@@ -1125,6 +1140,9 @@ msgstr "Uno"
msgid "Online-Upgrade"
msgstr "Aggiornamento in linea"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1314,6 +1332,21 @@ msgstr ""
msgid "Recording"
msgstr "Registrazione"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1358,6 +1391,9 @@ msgstr "Il restore delle impostazioni è terminato, premi OK per attivarle ora."
msgid "Right"
msgstr ""
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1623,6 +1659,9 @@ msgstr ""
msgid "Symbol Rate"
msgstr ""
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Sistema"
@@ -1746,12 +1785,21 @@ msgstr ""
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Modo trasmissione"
msgid "Transponder"
msgstr ""
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr ""
@@ -2223,6 +2271,9 @@ msgstr "tutta la directory /etc"
msgid "go to deep standby"
msgstr ""
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2460,6 +2511,9 @@ msgstr ""
msgid "show event details"
msgstr "Mostra dettagli evento"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index eb5c0623..dacabf14 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-12-22 16:16+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-22 14:02+0100\n"
"Last-Translator: Kees Aerts <aerts11@planet.nl>\n"
"Language-Team: none\n"
@@ -398,6 +398,12 @@ msgstr "Hoge ontvangst rate"
msgid "Code rate low"
msgstr "Lage ontvangst rate"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Kleur formaat"
@@ -444,6 +450,9 @@ msgstr ""
"mislukt! (%s)\n"
"probeer opnieuw..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Contrast"
@@ -604,9 +613,6 @@ msgstr ""
"Wilt u de Dreambox opwaarderen?\n"
"Druk op OK en een ogenblik geduld!"
-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?"
@@ -789,6 +795,9 @@ msgstr "Goto 0"
msgid "Goto position"
msgstr "Naar positie draaien"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Guard Interval mode"
@@ -801,6 +810,9 @@ msgstr "Harde schijf setup"
msgid "Harddisk standby after"
msgstr "Harde schijf standby na"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hiërarchie mode"
@@ -1164,6 +1176,9 @@ msgstr "Een"
msgid "Online-Upgrade"
msgstr "Online-Opwaarderen"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Anders..."
@@ -1356,6 +1371,21 @@ msgstr "Opgenomen files..."
msgid "Recording"
msgstr "Opnemen"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Opnamen hebben altijd voorang"
@@ -1402,6 +1432,9 @@ msgstr ""
msgid "Right"
msgstr "Rechts"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Running"
@@ -1671,6 +1704,9 @@ msgstr "Ga naar vorige subservice"
msgid "Symbol Rate"
msgstr "Symbolrate"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Systeem"
@@ -1794,12 +1830,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Overdragings type"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Transponder type"
+
msgid "Tries left:"
msgstr "Aantal pogingen over:"
@@ -2280,6 +2325,9 @@ msgstr "komplete /etc directory"
msgid "go to deep standby"
msgstr "Box Uitzetten"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "Luister naar radio..."
@@ -2519,6 +2567,9 @@ msgstr "laat alternatieven zien"
msgid "show event details"
msgstr "laat EPG details zien"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "uitzetten"
@@ -2649,6 +2700,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"
@@ -2739,9 +2793,6 @@ msgstr "zapped"
#~ msgid "Timeshifting"
#~ msgstr "Timeshift"
-#~ msgid "Transpondertype"
-#~ msgstr "Transponder type"
-
#~ msgid "UHF Modulator"
#~ msgstr "UHF-Modulator"
diff --git a/po/no.po b/po/no.po
index 3e2b6e64..492d6e3f 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-04-24 17:15+0100\n"
"Last-Translator: MMMMMM <theMMMMMM@gmail.com>\n"
"Language-Team: none\n"
@@ -384,6 +384,12 @@ msgstr ""
msgid "Code rate low"
msgstr ""
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Fargeformat"
@@ -427,6 +433,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrast"
@@ -754,6 +763,9 @@ msgstr ""
msgid "Goto position"
msgstr "Gå til posisjon"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr ""
@@ -766,6 +778,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr ""
@@ -1121,6 +1136,9 @@ msgstr "En"
msgid "Online-Upgrade"
msgstr ""
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1310,6 +1328,21 @@ msgstr ""
msgid "Recording"
msgstr "Opptak"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1356,6 +1389,9 @@ msgstr ""
msgid "Right"
msgstr ""
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1618,6 +1654,9 @@ msgstr ""
msgid "Symbol Rate"
msgstr "Symbolrate"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr ""
@@ -1739,12 +1778,21 @@ msgstr ""
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Sendingstype"
msgid "Transponder"
msgstr ""
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr ""
+
msgid "Tries left:"
msgstr ""
@@ -2211,6 +2259,9 @@ msgstr ""
msgid "go to deep standby"
msgstr ""
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2448,6 +2499,9 @@ msgstr ""
msgid "show event details"
msgstr "Vis sendingdetaljer"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index a0905755..868dbf26 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-12-22 03:10+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+0100\n"
"PO-Revision-Date: 2006-12-21 21:11+0100\n"
"Last-Translator: WeeGull <weegull@hotmail.com>\n"
"Language-Team: none\n"
@@ -393,6 +393,12 @@ msgstr "Code rate hög"
msgid "Code rate low"
msgstr "Code rate låg"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Färgformat"
@@ -439,6 +445,9 @@ msgstr ""
"misslyckades! (%s)\n"
"försöker igen..."
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Kontrast"
@@ -599,9 +608,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?"
@@ -784,6 +790,9 @@ msgstr "Gå till 0"
msgid "Goto position"
msgstr "Gå till position"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Guard interval läge"
@@ -796,6 +805,9 @@ msgstr "Hårddisk installation"
msgid "Harddisk standby after"
msgstr "Viloläge för hårddisk efter"
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Hierarkiskt läge"
@@ -1155,6 +1167,9 @@ msgstr "En"
msgid "Online-Upgrade"
msgstr "Online Uppgradering"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr "Annat..."
@@ -1348,6 +1363,21 @@ msgstr "Inspelade filer..."
msgid "Recording"
msgstr "Spelar in"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr "Inspelningar har alltid prioritet"
@@ -1394,6 +1424,9 @@ msgstr ""
msgid "Right"
msgstr "Höger"
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr "Körandes"
@@ -1663,6 +1696,9 @@ msgstr "Byt till föregående underkanal"
msgid "Symbol Rate"
msgstr "Symbolrate"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "System"
@@ -1786,12 +1822,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Toneburst A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "Sändningstyp"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Transponertyp"
+
msgid "Tries left:"
msgstr "Försök kvar:"
@@ -2271,6 +2316,9 @@ msgstr "fullt /etc bibliotek"
msgid "go to deep standby"
msgstr "Stäng av mottagaren"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr "lyssna på radio..."
@@ -2510,6 +2558,9 @@ msgstr "visa alternativ"
msgid "show event details"
msgstr "visa program detaljer"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr "stäng av"
@@ -2655,6 +2706,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 "Dreambox to standby. Do that now?"
#~ msgstr "Dreambox till viloläge. Utföra det nu?"
@@ -2751,9 +2805,6 @@ msgstr "zapped"
#~ msgid "Timeshifting"
#~ msgstr "Timeshifting"
-#~ msgid "Transpondertype"
-#~ msgstr "Transponertyp"
-
#~ msgid "UHF Modulator"
#~ msgstr "UHF Modulator"
diff --git a/po/tr.po b/po/tr.po
index 11cba456..0243f16e 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-12-19 08:30+0100\n"
+"POT-Creation-Date: 2007-01-07 01:58+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"
@@ -383,6 +383,12 @@ msgstr "Şifreleme düzeyi Yüksek"
msgid "Code rate low"
msgstr "Şifreleme Düzeyi Düşük"
+msgid "Coderate HP"
+msgstr ""
+
+msgid "Coderate LP"
+msgstr ""
+
msgid "Color Format"
msgstr "Renk Biçimi"
@@ -426,6 +432,9 @@ msgid ""
"retrying..."
msgstr ""
+msgid "Constellation"
+msgstr ""
+
msgid "Contrast"
msgstr "Keskinlik"
@@ -755,6 +764,9 @@ msgstr "0 Git"
msgid "Goto position"
msgstr "Pozisyona Git"
+msgid "Guard Interval"
+msgstr ""
+
msgid "Guard interval mode"
msgstr "Aralık Modunu Koru"
@@ -767,6 +779,9 @@ msgstr ""
msgid "Harddisk standby after"
msgstr ""
+msgid "Hierarchy Information"
+msgstr ""
+
msgid "Hierarchy mode"
msgstr "Düzen Modu"
@@ -1120,6 +1135,9 @@ msgstr "Bir"
msgid "Online-Upgrade"
msgstr "Çevrimiçi-Yükseltme"
+msgid "Orbital Position"
+msgstr ""
+
msgid "Other..."
msgstr ""
@@ -1309,6 +1327,21 @@ msgstr ""
msgid "Recording"
msgstr "Kaydetme"
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really reboot "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really restart "
+"now?"
+msgstr ""
+
+msgid ""
+"Recording(s) are in progress or comming up in few seconds... really shutdown "
+"now?"
+msgstr ""
+
msgid "Recordings always have priority"
msgstr ""
@@ -1354,6 +1387,9 @@ msgstr ""
msgid "Right"
msgstr ""
+msgid "Rolloff"
+msgstr ""
+
msgid "Running"
msgstr ""
@@ -1619,6 +1655,9 @@ msgstr "Önceki Alt Servisle Değiştir"
msgid "Symbol Rate"
msgstr "Sembol Oranı"
+msgid "Symbolrate"
+msgstr ""
+
msgid "System"
msgstr "Sistem"
@@ -1741,12 +1780,21 @@ msgstr "Toneburst"
msgid "Toneburst A/B"
msgstr "Ton İle Ayırma A/B"
+msgid "Transmission Mode"
+msgstr ""
+
msgid "Transmission mode"
msgstr "İletim Şekli"
msgid "Transponder"
msgstr "Transponder"
+msgid "Transponder Type"
+msgstr ""
+
+msgid "Transpondertype"
+msgstr "Transponder Yaz"
+
msgid "Tries left:"
msgstr ""
@@ -2203,6 +2251,9 @@ msgstr "Tüm /etc Klasörü"
msgid "go to deep standby"
msgstr "Derin Uyku Ya git"
+msgid "go to standby"
+msgstr ""
+
msgid "hear radio..."
msgstr ""
@@ -2440,6 +2491,9 @@ msgstr ""
msgid "show event details"
msgstr "Olay Detayını Göster"
+msgid "show transponder info"
+msgstr ""
+
msgid "shutdown"
msgstr ""
@@ -2631,9 +2685,6 @@ msgstr ""
#~ msgid "Timeshifting"
#~ msgstr "Zaman Duraksat"
-#~ msgid "Transpondertype"
-#~ msgstr "Transponder Yaz"
-
#~ msgid "UHF Modulator"
#~ msgstr "UHF Birimi"