From: ghost Date: Fri, 12 Feb 2010 13:23:06 +0000 (+0100) Subject: Merge branch 'bug_411_timeshift_disable_without_live' X-Git-Tag: 2.8.0~56 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/a37ddbb7785de5f1d944f4937a5b2914ce6a3862?hp=83a674f998012f616a3ed7e7b7043e498fd93e09 Merge branch 'bug_411_timeshift_disable_without_live' --- diff --git a/data/encoding.conf b/data/encoding.conf index 9383317e..3f09b564 100644 --- a/data/encoding.conf +++ b/data/encoding.conf @@ -12,18 +12,21 @@ bul ISO8859-5 #so our default is ISO8859-1 without two char byte encoding #So all transponders which needs this must be listed here #TSID ONID -0x447 0x1 #ASTRA 19.2 UPC Direct -0x427 0x1 #ASTRA 19.2 UPC Direct -0x44b 0x1 #ASTRA 19.2 UPC Direct -0x4ff 0x1 #ASTRA 19.2 UPC Direct -0x407 0x1 #ASTRA 19.2 UPC Direct -0x436 0x1 #ASTRA 19.2 MTV Euro - MTV Networks -0x42a 0x1 #ASTRA 19.2 VH1 Classic - MTV Networks -0xbc6 0x3 #ASTRA 23.5 Cslink, Skylink -0xc85 0x3 #ASTRA 23.5 Cslink, Skylink -0xc89 0x3 #ASTRA 23.5 Cslink, Skylink -0xc8f 0x3 #ASTRA 23.5 Cslink, Skylink -0xbc7 0x3 #ASTRA 23.5 Cslink, Skylink +0x447 0x1 # Astra 19.2°E 12.304 H - UPC Direct +0x427 0x1 # Astra 19.2°E 10.920 H - UPC Direct +0x44b 0x1 # Astra 19.2°E 12.382 H - UPC Direct +0x4ff 0x1 # Astra 19.2°E 11.992 H - UPC Direct +0x407 0x1 # Astra 19.2°E 11.671 H - UPC Direct +0x436 0x1 # Astra 19.2°E 11.973 V - MTV Networks Europe +0x42a 0x1 # Astra 19.2°E 11.739 V - MTV Networks Europe +0xc23 0x3 # Astra 23.5°E 10.803 H - CS Link / SkyLink +0xc85 0x3 # Astra 23.5°E 11.797 H - CS Link / SkyLink +0xc89 0x3 # Astra 23.5°E 11.876 H - CS Link / SkyLink +0xc8f 0x3 # Astra 23.5°E 11.992 H - CS Link / SkyLink +0xc93 0x3 # Astra 23.5°E 12.070 H - CS Link / SkyLink +0xc95 0x3 # Astra 23.5°E 12.109 H - SkyLink +0xbc6 0x3 # Astra 23.5°E 12.525 V - CS Link / SkyLink +0xbc7 0x3 # Astra 23.5°E 12.565 H - SkyLink 400 318 #Hotbird 13.0 Cyfra+ 1000 318 #Hotbird 13.0 Grupa ITI 1500 318 #Hotbird 13.0 Cyfra+ diff --git a/data/menu.xml b/data/menu.xml old mode 100644 new mode 100755 index 59195f15..fbc52957 --- a/data/menu.xml +++ b/data/menu.xml @@ -24,7 +24,7 @@ - + @@ -48,7 +48,7 @@ - + @@ -57,20 +57,20 @@ - - + + - + - + diff --git a/data/skin_default.xml b/data/skin_default.xml index 85c4016a..56d53dc3 100755 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -572,9 +572,11 @@ self.instance.move(ePoint(orgpos.x() + (orgwidth - newwidth)/2, orgpos.y())) + + diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp index 313732ab..5bafe732 100644 --- a/lib/base/ebase.cpp +++ b/lib/base/ebase.cpp @@ -225,6 +225,7 @@ int eMainloop::processOneEvent(unsigned int twisted_timeout, PyObject **res, ePy } m_is_idle = 1; + ++m_idle_count; if (this == eApp) { diff --git a/lib/base/ebase.h b/lib/base/ebase.h index 524052bd..c69133f6 100644 --- a/lib/base/ebase.h +++ b/lib/base/ebase.h @@ -195,6 +195,7 @@ class eMainloop int processOneEvent(unsigned int user_timeout, PyObject **res=0, ePyObject additional=ePyObject()); int retval; int m_is_idle; + int m_idle_count; eSocketNotifier *m_inActivate; int m_interrupt_requested; @@ -210,7 +211,7 @@ public: #endif eMainloop() - :app_quit_now(0),loop_level(0),retval(0), m_is_idle(0), m_inActivate(0), m_interrupt_requested(0) + :app_quit_now(0),loop_level(0),retval(0), m_is_idle(0), m_idle_count(0), m_inActivate(0), m_interrupt_requested(0) { existing_loops.push_back(this); } @@ -240,6 +241,7 @@ public: /* m_is_idle needs to be atomic, but it doesn't really matter much, as it's read-only from outside */ int isIdle() { return m_is_idle; } + int idleCount() { return m_idle_count; } }; /** diff --git a/lib/base/ioprio.cpp b/lib/base/ioprio.cpp index fb257401..3117b5e6 100644 --- a/lib/base/ioprio.cpp +++ b/lib/base/ioprio.cpp @@ -12,23 +12,25 @@ extern "C" int sys_ioprio_set(int, int, int); extern "C" int sys_ioprio_get(int, int); -#if defined(__i386__) -#define __NR_ioprio_set 289 -#define __NR_ioprio_get 290 -#elif defined(__ppc__) || defined(__powerpc__) -#define __NR_ioprio_set 273 -#define __NR_ioprio_get 274 -#elif defined(__x86_64__) -#define __NR_ioprio_set 251 -#define __NR_ioprio_get 252 -#elif defined(__ia64__) -#define __NR_ioprio_set 1274 -#define __NR_ioprio_get 1275 -#elif defined(__mips__) -#define __NR_ioprio_set 4284 -#define __NR_ioprio_get 4285 -#else -#error "Unsupported arch" +#ifndef __NR_ioprio_set + #if defined(__i386__) + #define __NR_ioprio_set 289 + #define __NR_ioprio_get 290 + #elif defined(__ppc__) || defined(__powerpc__) + #define __NR_ioprio_set 273 + #define __NR_ioprio_get 274 + #elif defined(__x86_64__) + #define __NR_ioprio_set 251 + #define __NR_ioprio_get 252 + #elif defined(__ia64__) + #define __NR_ioprio_set 1274 + #define __NR_ioprio_get 1275 + #elif defined(__mips__) + #define __NR_ioprio_set 4284 + #define __NR_ioprio_get 4285 + #else + #error "Unsupported arch" + #endif #endif #if defined(_syscall3) && defined(_syscall2) diff --git a/lib/gdi/grc.cpp b/lib/gdi/grc.cpp index 1f1b06a0..dff6b059 100644 --- a/lib/gdi/grc.cpp +++ b/lib/gdi/grc.cpp @@ -164,7 +164,13 @@ void *gRC::thread() if (pthread_cond_timedwait(&cond, &mutex, &timeout) == ETIMEDOUT) { if (eApp && !eApp->isIdle()) - idle = 0; + { + int idle_count = eApp->idleCount(); + if (idle_count == m_prev_idle_count) + idle = 0; + else + m_prev_idle_count = idle_count; + } } if (!idle) diff --git a/lib/gdi/grc.h b/lib/gdi/grc.h index 5d0106b3..3b8201ad 100644 --- a/lib/gdi/grc.h +++ b/lib/gdi/grc.h @@ -176,6 +176,7 @@ class gRC: public iObject, public Object ePtr m_compositing; + int m_prev_idle_count; public: gRC(); virtual ~gRC(); diff --git a/lib/python/Components/FanControl.py b/lib/python/Components/FanControl.py index cc133ac0..cee0523e 100644 --- a/lib/python/Components/FanControl.py +++ b/lib/python/Components/FanControl.py @@ -11,6 +11,20 @@ class FanControl: else: self.fancount = 0 self.createConfig() + config.misc.standbyCounter.addNotifier(self.standbyCounterChanged, initial_call = False) + + def leaveStandby(self): + for fanid in range(self.getFanCount()): + cfg = self.getConfig(fanid) + self.setVoltage(fanid, cfg.vlt.value) + self.setPWM(fanid, cfg.pwm.value) + + def standbyCounterChanged(self, configElement): + from Screens.Standby import inStandby + inStandby.onClose.append(self.leaveStandby) + for fanid in range(self.getFanCount()): + self.setVoltage(fanid, 0) + self.setPWM(fanid, 0) def createConfig(self): def setVlt(fancontrol, fanid, configElement): diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py index 7d27c097..dde158b6 100644 --- a/lib/python/Components/Lcd.py +++ b/lib/python/Components/Lcd.py @@ -28,6 +28,14 @@ class LCD: def isOled(self): return eDBoxLCD.getInstance().isOled() +def leaveStandby(): + config.lcd.bright.apply() + +def standbyCounterChanged(configElement): + from Screens.Standby import inStandby + inStandby.onClose.append(leaveStandby) + config.lcd.standby.apply() + def InitLcd(): detected = eDBoxLCD.getInstance().detected() SystemInfo["Display"] = detected @@ -72,3 +80,6 @@ def InitLcd(): config.lcd.standby = ConfigNothing() config.lcd.bright.apply = lambda : doNothing() config.lcd.standby.apply = lambda : doNothing() + + config.misc.standbyCounter.addNotifier(standbyCounterChanged, initial_call = False) + diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index bd10d9c3..4b0213d4 100755 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -234,7 +234,7 @@ class Network: self.configuredNetworkAdapters = self.configuredInterfaces # load ns only once self.loadNameserverConfig() - print "read configured interfac:", ifaces + print "read configured interface:", ifaces print "self.ifaces after loading:", self.ifaces self.config_ready = True self.msgPlugins() @@ -425,6 +425,7 @@ class Network: def checkNetworkState(self,statecallback): # www.dream-multimedia-tv.de, www.heise.de, www.google.de + self.NetworkState = 0 cmd1 = "ping -c 1 82.149.226.170" cmd2 = "ping -c 1 193.99.144.85" cmd3 = "ping -c 1 209.85.135.103" diff --git a/lib/python/Plugins/Extensions/CutListEditor/plugin.py b/lib/python/Plugins/Extensions/CutListEditor/plugin.py index abd606d6..0627df3b 100644 --- a/lib/python/Plugins/Extensions/CutListEditor/plugin.py +++ b/lib/python/Plugins/Extensions/CutListEditor/plugin.py @@ -10,7 +10,7 @@ from Components.VideoWindow import VideoWindow from Components.Label import Label from Screens.InfoBarGenerics import InfoBarSeek, InfoBarCueSheetSupport from Components.GUIComponent import GUIComponent -from enigma import eListboxPythonMultiContent, eListbox, gFont, iPlayableService, RT_HALIGN_RIGHT +from enigma import eListboxPythonMultiContent, eListbox, getDesktop, gFont, iPlayableService, RT_HALIGN_RIGHT from Screens.FixedMenu import FixedMenu from Screens.HelpMenu import HelpableScreen from ServiceReference import ServiceReference @@ -167,7 +167,8 @@ class CutListEditor(Screen, InfoBarBase, InfoBarSeek, InfoBarCueSheetSupport, He self.onPlayStateChanged.append(self.updateStateLabel) self.updateStateLabel(self.seekstate) - self["Video"] = VideoWindow(decoder = 0) + desktopSize = getDesktop(0).size() + self["Video"] = VideoWindow(decoder = 0, fb_width=desktopSize.width(), fb_height=desktopSize.height()) self["actions"] = HelpableActionMap(self, "CutListEditorActions", { diff --git a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py index e895a141..6e4d9cc6 100755 --- a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py @@ -736,6 +736,7 @@ def filescan(**kwargs): paths_to_scan = [ ScanPath(path = "video_ts", with_subdirs = False), + ScanPath(path = "VIDEO_TS", with_subdirs = False), ScanPath(path = "", with_subdirs = False), ], name = "DVD", diff --git a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py index 6667e3e3..f8677bb2 100755 --- a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py +++ b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py @@ -122,7 +122,7 @@ def selSetup(menuid, **kwargs): if menuid != "system": return [ ] - return [(_("Cleanup Wizard settings") + "...", openconfig, "cleanup_config", 71)] + return [(_("Cleanup Wizard settings"), openconfig, "cleanup_config", 71)] def Plugins(**kwargs): list = [] diff --git a/lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py b/lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py index cf998a79..25639818 100755 --- a/lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py +++ b/lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py @@ -391,7 +391,7 @@ def selSetup(menuid, **kwargs): if menuid != "system": return [ ] - return [(_("Crashlog settings") + "...", openconfig, "crashlog_config", 70)] + return [(_("Crashlog settings"), openconfig, "crashlog_config", 70)] def Plugins(**kwargs): diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py b/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py index 75ca390b..6096ca8b 100755 --- a/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py +++ b/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py @@ -9,7 +9,6 @@ from Components.Network import iNetwork from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_SKIN_IMAGE from enigma import eTimer - config.misc.firstrun = ConfigBoolean(default = True) list = [] list.append("WEP") @@ -52,7 +51,7 @@ class NetworkWizard(WizardLanguage, Rc): """ - def __init__(self, session): + def __init__(self, session, interface = None): self.xmlfile = resolveFilename(SCOPE_PLUGINS, "SystemPlugins/NetworkWizard/networkwizard.xml") WizardLanguage.__init__(self, session, showSteps = False, showStepSlider = False) Rc.__init__(self) @@ -68,7 +67,10 @@ class NetworkWizard(WizardLanguage, Rc): self.isInterfaceUp = None self.WlanPluginInstalled = None self.ap = None - self.selectedInterface = None + if interface is not None: + self.selectedInterface = interface + else: + self.selectedInterface = None self.NextStep = None self.resetRef = None self.checkRef = None @@ -95,16 +97,49 @@ class NetworkWizard(WizardLanguage, Rc): def markDone(self): self.rescanTimer.stop() del self.rescanTimer + self.checkOldInterfaceState() pass def getInstalledInterfaceCount(self): self.rescanTimer.stop() self.Adapterlist = iNetwork.getAdapterList() self.InstalledInterfaceCount = len(self.Adapterlist) + if self.Adapterlist is not None: + if self.InstalledInterfaceCount == 1 and self.selectedInterface is None: + self.selectedInterface = self.Adapterlist[0] self.originalAth0State = iNetwork.getAdapterAttribute('ath0', 'up') self.originalEth0State = iNetwork.getAdapterAttribute('eth0', 'up') self.originalWlan0State = iNetwork.getAdapterAttribute('wlan0', 'up') + def selectInterface(self): + self.InterfaceState = None + if self.selectedInterface is None and self.InstalledInterfaceCount <= 1: + if self.selectedInterface == 'eth0': + self.NextStep = 'nwconfig' + else: + self.NextStep = 'scanwlan' + self.checkInterface(self.selectedInterface) + elif self.selectedInterface is not None and self.InstalledInterfaceCount <= 1: + if self.selectedInterface == 'eth0': + self.NextStep = 'nwconfig' + else: + self.NextStep = 'scanwlan' + self.checkInterface(self.selectedInterface) + elif self.selectedInterface is None and self.InstalledInterfaceCount > 1: + self.NextStep = 'selectinterface' + self.currStep = self.getStepWithID(self.NextStep) + self.afterAsyncCode() + elif self.selectedInterface is not None and self.InstalledInterfaceCount > 1: + if self.selectedInterface == 'eth0': + self.NextStep = 'nwconfig' + else: + self.NextStep = 'scanwlan' + self.checkInterface(self.selectedInterface) + else: + self.NextStep = 'selectinterface' + self.currStep = self.getStepWithID(self.NextStep) + self.afterAsyncCode() + def checkOldInterfaceState(self): # disable up interface if it was originally down and config is unchanged. if self.originalAth0State is False and self.originalInterfaceStateChanged is False: @@ -220,16 +255,18 @@ class NetworkWizard(WizardLanguage, Rc): if data is True: if status is not None: text1 = _("Your Dreambox is now ready to use.\n\nYour internet connection is working now.\n\n") - text2 = _('Accesspoint:') + "\t" + status[self.selectedInterface]["acesspoint"] + "\n" - text3 = _('SSID:') + "\t" + status[self.selectedInterface]["essid"] + "\n" - text4 = _('Link Quality:') + "\t" + status[self.selectedInterface]["quality"]+"%" + "\n" - text5 = _('Signal Strength:') + "\t" + status[self.selectedInterface]["signal"] + "\n" - text6 = _('Bitrate:') + "\t" + status[self.selectedInterface]["bitrate"] + "\n" - text7 = _('Encryption:') + " " + status[self.selectedInterface]["encryption"] + "\n" + text2 = _('Accesspoint:') + "\t" + str(status[self.selectedInterface]["acesspoint"]) + "\n" + text3 = _('SSID:') + "\t" + str(status[self.selectedInterface]["essid"]) + "\n" + text4 = _('Link Quality:') + "\t" + str(status[self.selectedInterface]["quality"])+"%" + "\n" + text5 = _('Signal Strength:') + "\t" + str(status[self.selectedInterface]["signal"]) + "\n" + text6 = _('Bitrate:') + "\t" + str(status[self.selectedInterface]["bitrate"]) + "\n" + text7 = _('Encryption:') + " " + str(status[self.selectedInterface]["encryption"]) + "\n" text8 = _("Please press OK to continue.") infotext = text1 + text2 + text3 + text4 + text5 + text7 +"\n" + text8 self.currStep = self.getStepWithID("checkWlanstatusend") self.Text = infotext + if str(status[self.selectedInterface]["acesspoint"]) == "Not-Associated": + self.InterfaceState = False self.afterAsyncCode() def checkNetwork(self): @@ -300,32 +337,38 @@ class NetworkWizard(WizardLanguage, Rc): except ImportError: self.APList.append( ( _("No networks found"),_("unavailable") ) ) return self.APList - else: - self.w = Wlan(self.selectedInterface) - aps = self.w.getNetworkList() - if aps is not None: - print "[NetworkWizard.py] got Accespoints!" - tmplist = [] - complist = [] - for ap in aps: - a = aps[ap] - if a['active']: - tmplist.append( (a['bssid'], a['essid']) ) - complist.append( (a['bssid'], a['essid']) ) - - for entry in tmplist: - if entry[1] == "": - for compentry in complist: - if compentry[0] == entry[0]: - complist.remove(compentry) - for entry in complist: - self.APList.append( (entry[1], entry[1]) ) - - if "hidden..." not in self.APList: - self.APList.append(( _("enter hidden network SSID"), "hidden..." )) - - self.rescanTimer.start(3000) - return self.APList + else: + try: + self.w = Wlan(self.selectedInterface) + aps = self.w.getNetworkList() + except ValueError: + self.APList = [] + self.APList.append( ( _("No networks found"),_("unavailable") ) ) + return self.APList + else: + if aps is not None: + print "[NetworkWizard.py] got Accespoints!" + tmplist = [] + complist = [] + for ap in aps: + a = aps[ap] + if a['active']: + tmplist.append( (a['bssid'], a['essid']) ) + complist.append( (a['bssid'], a['essid']) ) + + for entry in tmplist: + if entry[1] == "": + for compentry in complist: + if compentry[0] == entry[0]: + complist.remove(compentry) + for entry in complist: + self.APList.append( (entry[1], entry[1]) ) + + if "hidden..." not in self.APList: + self.APList.append(( _("enter hidden network SSID"), "hidden..." )) + + self.rescanTimer.start(3000) + return self.APList def AccessPointsSelectionMade(self, index): self.ap = index @@ -355,5 +398,26 @@ class NetworkWizard(WizardLanguage, Rc): else: self.WlanPluginInstalled = True + def listChoices(self): + self.rescanTimer.stop() + list = [] + if self.WlanPluginInstalled == True: + list.append((_("Configure your wireless LAN again"), "scanwlan")) + list.append((_("Configure your internal LAN"), "nwconfig")) + list.append((_("Exit network wizard"), "end")) + return list + + def ChoicesSelectionMade(self, index): + self.ChoicesSelect(index) + def ChoicesSelect(self, index): + if index == 'end': + self.NextStep = 'end' + elif index == 'nwconfig': + self.selectedInterface = "eth0" + self.NextStep = 'nwconfig' + else: + self.NextStep = 'scanwlan' + def ChoicesSelectionMoved(self): + pass diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/networkwizard.xml b/lib/python/Plugins/SystemPlugins/NetworkWizard/networkwizard.xml index dcd9d933..c4300436 100755 --- a/lib/python/Plugins/SystemPlugins/NetworkWizard/networkwizard.xml +++ b/lib/python/Plugins/SystemPlugins/NetworkWizard/networkwizard.xml @@ -1,11 +1,14 @@ - + self.clearSelectedKeys() self.selectKey("OK") + +self.selectInterface() + @@ -80,7 +83,7 @@ self.selectKey("UP") self.selectKey("DOWN") - + @@ -109,11 +112,7 @@ self.condition = (self.isInterfaceUp == False and self.WlanPluginInstalled == Tr - - - - - + self.clearSelectedKeys() self.selectKey("OK") @@ -127,10 +126,8 @@ self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == Fal - - - - + + self.clearSelectedKeys() self.selectKey("OK") @@ -185,7 +182,7 @@ self.selectKey("UP") self.selectKey("DOWN") - + diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py b/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py index dc3becac..49ec7da8 100755 --- a/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py +++ b/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py @@ -9,7 +9,7 @@ def startSetup(menuid): if menuid != "system": return [ ] - return [(_("Network Wizard") + "...", NetworkWizardMain, "nw_wizard", 40)] + return [(_("Network Wizard"), NetworkWizardMain, "nw_wizard", 40)] def NetworkWizard(*args, **kwargs): from NetworkWizard import NetworkWizard @@ -19,4 +19,4 @@ def Plugins(**kwargs): list = [] if config.misc.firstrun.value: list.append(PluginDescriptor(name=_("Network Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(25, NetworkWizard))) - return list + return list diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py index d9ccab57..dcff3ca2 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py @@ -252,7 +252,7 @@ class RestoreMenu(Screen): if (self.exe == False) and (self.entry == True): self.sel = self["filelist"].getCurrent() self.val = self.path + "/" + self.sel - self.session.openWithCallback(self.startRestore, MessageBox, _("Are you sure you want to restore\nfollowing backup:\n" + self.sel + "\nSystem will restart after the restore!")) + self.session.openWithCallback(self.startRestore, MessageBox, _("Are you sure you want to restore\nfollowing backup:\n") + self.sel + _("\nSystem will restart after the restore!")) def keyCancel(self): self.close() diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/SoftwareTools.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/SoftwareTools.py index 4e7591ef..e8cf6dc2 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/SoftwareTools.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/SoftwareTools.py @@ -94,14 +94,17 @@ class SoftwareTools(DreamInfoHandler): def IpkgListAvailableCB(self, result, retval, extra_args = None): (callback) = extra_args - if len(result): + if result: if SoftwareTools.list_updating: SoftwareTools.available_packetlist = [] for x in result.splitlines(): - split = x.split(' - ') - name = split[0].strip() + tokens = x.split(' - ') + name = tokens[0].strip() if not any(name.endswith(x) for x in self.unwanted_extensions): - SoftwareTools.available_packetlist.append([name, split[1].strip(), split[2].strip()]) + l = len(tokens) + version = l > 1 and tokens[1].strip() or "" + descr = l > 2 and tokens[2].strip() or "" + SoftwareTools.available_packetlist.append([name, version, descr]) if callback is None: self.startInstallMetaPackage() else: @@ -126,7 +129,7 @@ class SoftwareTools(DreamInfoHandler): def InstallMetaPackageCB(self, result, retval, extra_args = None): (callback) = extra_args - if len(result): + if result: self.fillPackagesIndexList() if callback is None: self.startIpkgListInstalled() @@ -152,13 +155,15 @@ class SoftwareTools(DreamInfoHandler): def IpkgListInstalledCB(self, result, retval, extra_args = None): (callback) = extra_args - if len(result): + if result: SoftwareTools.installed_packetlist = {} for x in result.splitlines(): - split = x.split(' - ') - name = split[0].strip() + tokens = x.split(' - ') + name = tokens[0].strip() if not any(name.endswith(x) for x in self.unwanted_extensions): - SoftwareTools.installed_packetlist[name] = split[1].strip() + l = len(tokens) + version = l > 1 and tokens[1].strip() or "" + SoftwareTools.installed_packetlist[name] = version if callback is None: self.countUpdates() else: @@ -203,7 +208,7 @@ class SoftwareTools(DreamInfoHandler): def IpkgUpdateCB(self, result, retval, extra_args = None): (callback) = extra_args - if len(result): + if result: if self.Console: if len(self.Console.appContainers) == 0: if callback is not None: diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py index f61ea53c..4dbe7f70 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py @@ -137,8 +137,8 @@ class UpdatePluginMenu(Screen): self.list.append(("advancedrestore", _("Advanced restore"), _("\nRestore your backups by date." ) + self.oktext, None)) self.list.append(("backuplocation", _("Choose backup location"), _("\nSelect your backup device.\nCurrent device: " ) + config.plugins.configurationbackup.backuplocation.value + self.oktext, None)) self.list.append(("backupfiles", _("Choose backup files"), _("Select files for backup. Currently selected:\n" ) + self.backupdirs + self.oktext, None)) - #if config.usage.setup_level.index >= 2: # expert+ - # self.list.append(("ipkg-manager", _("Packet management"), _("\nView, install and remove available or installed packages." ) + self.oktext, None)) + if config.usage.setup_level.index >= 2: # expert+ + self.list.append(("ipkg-manager", _("Packet management"), _("\nView, install and remove available or installed packages." ) + self.oktext, None)) self.list.append(("ipkg-source",_("Choose upgrade source"), _("\nEdit the upgrade source address." ) + self.oktext, None)) for p in plugins.getPlugins(PluginDescriptor.WHERE_SOFTWAREMANAGER): if p.__call__.has_key("AdvancedSoftwareSupported"): @@ -326,10 +326,12 @@ class PluginManager(Screen, DreamInfoHandler): """ - def __init__(self, session, plugin_path, args = None): + def __init__(self, session, plugin_path = None, args = None): Screen.__init__(self, session) self.session = session self.skin_path = plugin_path + if self.skin_path == None: + self.skin_path = resolveFilename(SCOPE_CURRENT_PLUGIN, "SystemPlugins/SoftwareManager") self["shortcuts"] = ActionMap(["ShortcutActions", "WizardActions", "InfobarEPGActions", "HelpActions" ], { @@ -634,7 +636,7 @@ class PluginManager(Screen, DreamInfoHandler): elif tag == 'Default': return(( _("Default Settings"), _("View list of available default settings" ), tag, divpng )) elif tag == 'SAT': - return(( _("Satteliteequipment"), _("View list of available Satteliteequipment extensions." ), tag, divpng )) + return(( _("Satellite equipment"), _("View list of available Satellite equipment extensions." ), tag, divpng )) elif tag == 'Software': return(( _("Software"), _("View list of available software extensions" ), tag, divpng )) elif tag == 'Multimedia': @@ -818,7 +820,7 @@ class PluginManagerHelp(Screen): {"template": [ - MultiContentEntryText(pos = (50, 0), size = (150, 26), font=0, flags = RT_HALIGN_LEFT, text = 0), # index 0 is the name + MultiContentEntryText(pos = (50, 0), size = (540, 26), font=0, flags = RT_HALIGN_LEFT, text = 0), # index 0 is the name MultiContentEntryText(pos = (50, 27), size = (540, 23), font=1, flags = RT_HALIGN_LEFT, text = 1), # index 1 is the state MultiContentEntryPixmapAlphaTest(pos = (0, 1), size = (48, 48), png = 2), # index 2 is the status pixmap MultiContentEntryPixmapAlphaTest(pos = (0, 48), size = (550, 2), png = 3), # index 3 is the div pixmap @@ -1556,24 +1558,31 @@ class PacketManager(Screen): pass def IpkgList_Finished(self, result, retval, extra_args = None): - if len(result): + if result: self.packetlist = [] for x in result.splitlines(): - split = x.split(' - ') #self.blacklisted_packages - if not any(split[0].strip().endswith(x) for x in self.unwanted_extensions): - self.packetlist.append([split[0].strip(), split[1].strip(),split[2].strip()]) + tokens = x.split(' - ') #self.blacklisted_packages + name = tokens[0].strip() + if not any(name.endswith(x) for x in self.unwanted_extensions): + l = len(tokens) + version = l > 1 and tokens[1].strip() or "" + descr = l > 2 and tokens[2].strip() or "" + self.packetlist.append([name, version, descr]) if not self.Console: self.Console = Console() cmd = "ipkg list_installed" self.Console.ePopen(cmd, self.IpkgListInstalled_Finished) def IpkgListInstalled_Finished(self, result, retval, extra_args = None): - if len(result): + if result: self.installed_packetlist = {} for x in result.splitlines(): - split = x.split(' - ') - if not any(split[0].strip().endswith(x) for x in self.unwanted_extensions): - self.installed_packetlist[split[0].strip()] = split[1].strip() + tokens = x.split(' - ') #self.blacklisted_packages + name = tokens[0].strip() + if not any(name.endswith(x) for x in self.unwanted_extensions): + l = len(tokens) + version = l > 1 and tokens[1].strip() or "" + self.installed_packetlist[name] = version self.buildPacketList() def buildEntryComponent(self, name, version, description, state): @@ -1701,7 +1710,7 @@ def Plugins(path, **kwargs): plugin_path = path list = [ PluginDescriptor(where = [PluginDescriptor.WHERE_NETWORKCONFIG_READ], fnc = autostart), - PluginDescriptor(name=_("Software management"), description=_("Manage your receiver's software"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup), + PluginDescriptor(name=_("Software management"), description=_("Manage your receiver's software"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup), PluginDescriptor(name=_("Ipkg"), where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan) ] if config.usage.setup_level.index >= 2: # expert+ diff --git a/lib/python/Plugins/SystemPlugins/Videomode/HDMI.png b/lib/python/Plugins/SystemPlugins/Videomode/HDMI.png new file mode 100644 index 00000000..5aa83047 Binary files /dev/null and b/lib/python/Plugins/SystemPlugins/Videomode/HDMI.png differ diff --git a/lib/python/Plugins/SystemPlugins/Videomode/Makefile.am b/lib/python/Plugins/SystemPlugins/Videomode/Makefile.am index 2ec0b335..1ac1d5dd 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/Makefile.am +++ b/lib/python/Plugins/SystemPlugins/Videomode/Makefile.am @@ -16,4 +16,6 @@ dist_install_DATA = \ LICENSE \ Scart.png \ videowizard.xml \ - YPbPr.png + YPbPr.png \ + HDMI.png \ + lcd_HDMI.png diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index 512bcec3..15f4d516 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -99,7 +99,10 @@ class VideoWizard(WizardLanguage, Rc): print "input selection moved:", self.selection self.inputSelect(self.selection) if self["portpic"].instance is not None: - self["portpic"].instance.setPixmapFromFile(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/Videomode/" + self.selection + ".png")) + picname = self.selection + if picname == "DVI" and HardwareInfo().get_device_name() == "dm500hd": + picname = "HDMI" + self["portpic"].instance.setPixmapFromFile(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/Videomode/" + picname + ".png")) def inputSelect(self, port): print "inputSelect:", port diff --git a/lib/python/Plugins/SystemPlugins/Videomode/lcd_HDMI.png b/lib/python/Plugins/SystemPlugins/Videomode/lcd_HDMI.png new file mode 100644 index 00000000..425da5c3 Binary files /dev/null and b/lib/python/Plugins/SystemPlugins/Videomode/lcd_HDMI.png differ diff --git a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py index 733edd6d..39c1131a 100755 --- a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py @@ -218,7 +218,7 @@ def startSetup(menuid): if menuid != "system": return [ ] - return [(_("A/V Settings") + "...", videoSetupMain, "av_setup", 40)] + return [(_("A/V Settings"), videoSetupMain, "av_setup", 40)] def VideoWizard(*args, **kwargs): from VideoWizard import VideoWizard diff --git a/lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py b/lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py index c8568b98..a9f7bf43 100755 --- a/lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py +++ b/lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py @@ -151,6 +151,7 @@ class WlanStatus(Screen): self["statuspic"].setPixmapNum(0) self["statuspic"].show() + class WlanScan(Screen): skin = """ @@ -190,7 +191,7 @@ class WlanScan(Screen): self.WlanList = None self.cleanList = None self.oldlist = None - self.listLenght = None + self.listLength = None self.rescanTimer = eTimer() self.rescanTimer.callback.append(self.rescanTimerFired) @@ -226,7 +227,10 @@ class WlanScan(Screen): self.rescanTimer.stop() del self.rescanTimer if cur[1] is not None: - essid = cur[1] + if cur[1] == 'hidden...': + essid = cur[1] + else: + essid = cur[0] self.close(essid,self.getWlanList()) else: self.close(None,None) @@ -305,7 +309,7 @@ class WlanScan(Screen): self['list'].setList(self.newAPList) self["list"].setIndex(newListIndex) self["list"].updateList(self.newAPList) - self.listLenght = len(self.newAPList) + self.listLength = len(self.newAPList) self.buildWlanList() self.setInfo() @@ -315,7 +319,7 @@ class WlanScan(Screen): self.w = Wlan(self.iface) aps = self.w.getNetworkList() if aps is not None: - print "[NetworkWizard.py] got Accespoints!" + print "[WirelessLan.py] got Accespoints!" tmpList = [] compList = [] for ap in aps: @@ -340,31 +344,34 @@ class WlanScan(Screen): if refresh is False: self['list'].setList(self.APList) - self.listLenght = len(self.APList) + self.listLength = len(self.APList) self.setInfo() self.rescanTimer.start(5000) return self.cleanList def setInfo(self): length = self.getLength() - if length == 0: + if length <= 1: self["info"].setText(_("No wireless networks found! Please refresh.")) - elif length == 1: + elif length == 2: self["info"].setText(_("1 wireless network found!")) else: - self["info"].setText(str(length)+_(" wireless networks found!")) + self["info"].setText(str(length-1)+_(" wireless networks found!")) def buildWlanList(self): self.WlanList = [] - currList = [] - currList = self['list'].list - for entry in currList: - self.WlanList.append( (entry[1], entry[0]) ) + for entry in self['list'].list: + if entry[1] == "hidden...": + self.WlanList.append(( "hidden...",_("enter hidden network SSID") ))#continue + else: + self.WlanList.append( (entry[0], entry[0]) ) def getLength(self): - return self.listLenght + return self.listLength def getWlanList(self): + if self.WlanList is None: + self.buildWlanList() return self.WlanList diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 5fbfd591..4ca6fa39 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -31,7 +31,6 @@ from Screens.PictureInPicture import PictureInPicture from Screens.RdsDisplay import RassInteractive from ServiceReference import ServiceReference from Tools.BoundFunction import boundFunction -from re import compile from os import remove profile("ChannelSelection.py after imports") @@ -713,6 +712,7 @@ class ChannelSelectionBase(Screen): self.servicePathTV = [ ] self.servicePathRadio = [ ] self.servicePath = [ ] + self.rootChanged = False self.mode = MODE_TV @@ -819,6 +819,7 @@ class ChannelSelectionBase(Screen): else: self.servicelist.setMode(ServiceList.MODE_NORMAL) self.servicelist.setRoot(root, justSet) + self.rootChanged = True self.buildTitleString() def removeModeStr(self, str): @@ -1180,6 +1181,7 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelect self.servicelist.setPlayableIgnoreService(eServiceReference()) def setMode(self): + self.rootChanged = True self.restoreRoot() lastservice=eServiceReference(self.lastservice.value) if lastservice.valid(): @@ -1303,19 +1305,21 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelect self.lastroot.save() def restoreRoot(self): - self.clearPath() - re = compile('.+?;') - tmp = re.findall(self.lastroot.value) - cnt = 0 - for i in tmp: - self.servicePath.append(eServiceReference(i[:-1])) - cnt += 1 - if cnt: - path = self.servicePath.pop() - self.enterPath(path) - else: - self.showFavourites() - self.saveRoot() + tmp = [x for x in self.lastroot.value.split(';') if x != ''] + current = [x.toString() for x in self.servicePath] + if tmp != current or self.rootChanged: + self.clearPath() + cnt = 0 + for i in tmp: + self.servicePath.append(eServiceReference(i)) + cnt += 1 + if cnt: + path = self.servicePath.pop() + self.enterPath(path) + else: + self.showFavourites() + self.saveRoot() + self.rootChanged = False def preEnterPath(self, refstr): if self.servicePath and self.servicePath[0] != eServiceReference(refstr): @@ -1463,19 +1467,20 @@ class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelS config.radio.lastroot.save() def restoreRoot(self): - self.clearPath() - re = compile('.+?;') - tmp = re.findall(config.radio.lastroot.value) - cnt = 0 - for i in tmp: - self.servicePathRadio.append(eServiceReference(i[:-1])) - cnt += 1 - if cnt: - path = self.servicePathRadio.pop() - self.enterPath(path) - else: - self.showFavourites() - self.saveRoot() + tmp = [x for x in config.radio.lastroot.value.split(';') if x != ''] + current = [x.toString() for x in self.servicePath] + if tmp != current or self.rootChanged: + cnt = 0 + for i in tmp: + self.servicePathRadio.append(eServiceReference(i)) + cnt += 1 + if cnt: + path = self.servicePathRadio.pop() + self.enterPath(path) + else: + self.showFavourites() + self.saveRoot() + self.rootChanged = False def preEnterPath(self, refstr): if self.servicePathRadio and self.servicePathRadio[0] != eServiceReference(refstr): diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 7ae0b123..ca9ba550 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -2014,8 +2014,10 @@ class InfoBarCueSheetSupport: if last is not None: self.resume_point = last + + l = last / 90000 if config.usage.on_movie_start.value == "ask": - Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?"), timeout=10) + Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?") + "\n" + (_("Resume position at %s") % ("%d:%02d:%02d" % (l/3600, l%3600/60, l%60))), timeout=10) elif config.usage.on_movie_start.value == "resume": # TRANSLATORS: The string "Resuming playback" flashes for a moment # TRANSLATORS: at the start of a movie, when the user has selected diff --git a/lib/python/Screens/Makefile.am b/lib/python/Screens/Makefile.am index 5457bf64..d96b491e 100755 --- a/lib/python/Screens/Makefile.am +++ b/lib/python/Screens/Makefile.am @@ -14,5 +14,5 @@ install_PYTHON = \ SubtitleDisplay.py SubservicesQuickzap.py ParentalControlSetup.py NumericalTextInputHelpDialog.py \ SleepTimerEdit.py Ipkg.py RdsDisplay.py Globals.py DefaultWizard.py \ SessionGlobals.py LocationBox.py WizardLanguage.py TaskView.py Rc.py VirtualKeyBoard.py \ - TextBox.py FactoryReset.py RecordPaths.py UnhandledKey.py + TextBox.py FactoryReset.py RecordPaths.py UnhandledKey.py ServiceStopScreen.py diff --git a/lib/python/Screens/Menu.py b/lib/python/Screens/Menu.py old mode 100644 new mode 100755 index bb0709e5..2a8801ca --- a/lib/python/Screens/Menu.py +++ b/lib/python/Screens/Menu.py @@ -160,7 +160,7 @@ class Menu(Screen): elif x.tag == 'setup': id = x.get("id") if item_text == "": - item_text = _(getSetupTitle(id)) + "..." + item_text = _(getSetupTitle(id)) else: item_text = _(item_text) destList.append((item_text, boundFunction(self.openSetup, id), entryID, weight)) @@ -245,7 +245,7 @@ class Menu(Screen): # Calculate index number -= 1 - if len(self["menu"].list) > number: + if len(self["menu"].list) > number: self["menu"].setIndex(number) self.okbuttonClick() diff --git a/lib/python/Screens/NetworkSetup.py b/lib/python/Screens/NetworkSetup.py index 3e9354ea..c0037f81 100755 --- a/lib/python/Screens/NetworkSetup.py +++ b/lib/python/Screens/NetworkSetup.py @@ -64,6 +64,7 @@ class NetworkAdapterSelection(Screen,HelpableScreen): self["key_red"] = StaticText(_("Close")) self["key_green"] = StaticText(_("Select")) self["key_yellow"] = StaticText("") + self["key_blue"] = StaticText("") self["introduction"] = StaticText(self.edittext) self.adapters = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getAdapterList()] @@ -81,6 +82,7 @@ class NetworkAdapterSelection(Screen,HelpableScreen): { "red": (self.close, _("exit network interface list")), "green": (self.okbuttonClick, _("select interface")), + "blue": (self.openNetworkWizard, _("Use the Networkwizard to configure selected network adapter")), }) self["DefaultInterfaceAction"] = HelpableActionMap(self, "ColorActions", @@ -132,7 +134,9 @@ class NetworkAdapterSelection(Screen,HelpableScreen): else: active_int = False self.list.append(InterfaceEntryComponent(index = x[1],name = _(x[0]),default=default_int,active=active_int )) - + + if os_path.exists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/NetworkWizard/networkwizard.xml")): + self["key_blue"].setText(_("NetworkWizard")) self["list"].l.setList(self.list) def setDefaultInterface(self): @@ -202,6 +206,16 @@ class NetworkAdapterSelection(Screen,HelpableScreen): self.updateList() self.session.open(MessageBox, _("Finished configuring your network"), type = MessageBox.TYPE_INFO, timeout = 10, default = False) + def openNetworkWizard(self): + if os_path.exists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/NetworkWizard/networkwizard.xml")): + try: + from Plugins.SystemPlugins.NetworkWizard.NetworkWizard import NetworkWizard + except ImportError: + self.session.open(MessageBox, _("The NetworkWizard extension is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 ) + else: + selection = self["list"].getCurrent() + if selection is not None: + self.session.openWithCallback(self.AdapterSetupClosed, NetworkWizard, selection[0]) class NameserverSetup(Screen, ConfigListScreen, HelpableScreen): @@ -769,7 +783,7 @@ class AdapterSetupConfiguration(Screen, HelpableScreen): self.session.openWithCallback(self.restartLan, MessageBox, (_("Are you sure you want to restart your network interfaces?\n\n") + self.oktext ) ) if self["menulist"].getCurrent()[1] == 'openwizard': from Plugins.SystemPlugins.NetworkWizard.NetworkWizard import NetworkWizard - self.session.openWithCallback(self.AdapterSetupClosed, NetworkWizard) + self.session.openWithCallback(self.AdapterSetupClosed, NetworkWizard, self.iface) if self["menulist"].getCurrent()[1][0] == 'extendedSetup': self.extended = self["menulist"].getCurrent()[1][2] self.extended(self.session, self.iface) diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index cce08aed..69bf80f7 100755 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -38,7 +38,12 @@ class PluginBrowser(Screen): "red": self.delete, "green": self.download }) + self["SoftwareActions"] = ActionMap(["ColorActions"], + { + "red": self.openExtensionmanager + }) self["PluginDownloadActions"].setEnabled(False) + self["SoftwareActions"].setEnabled(False) self.onFirstExecBegin.append(self.checkWarnings) self.onShown.append(self.updateList) @@ -62,12 +67,14 @@ class PluginBrowser(Screen): self.list = [PluginEntryComponent(plugin) for plugin in self.pluginlist] self["list"].l.setList(self.list) if fileExists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/SoftwareManager/plugin.py")): - self["red"].setText("") + self["red"].setText(_("Manage extensions")) self["green"].setText("") + self["SoftwareActions"].setEnabled(True) self["PluginDownloadActions"].setEnabled(False) else: self["red"].setText(_("Remove Plugins")) self["green"].setText(_("Download Plugins")) + self["SoftwareActions"].setEnabled(False) self["PluginDownloadActions"].setEnabled(True) def delete(self): @@ -80,6 +87,14 @@ class PluginBrowser(Screen): self.updateList() self.checkWarnings() + def openExtensionmanager(self): + if fileExists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/SoftwareManager/plugin.py")): + try: + from Plugins.SystemPlugins.SoftwareManager.plugin import PluginManager + except ImportError: + self.session.open(MessageBox, _("The Softwaremanagement extension is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 ) + else: + self.session.openWithCallback(self.PluginDownloadBrowserClosed, PluginManager) class PluginDownloadBrowser(Screen): DOWNLOAD = 0 diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index d5249b99..156f7780 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -10,11 +10,12 @@ from Components.config import getConfigListEntry, config, ConfigNothing, ConfigS from Components.Sources.List import List from Screens.MessageBox import MessageBox from Screens.ChoiceBox import ChoiceBox +from Screens.ServiceStopScreen import ServiceStopScreen from time import mktime, localtime from datetime import datetime -class NimSetup(Screen, ConfigListScreen): +class NimSetup(Screen, ConfigListScreen, ServiceStopScreen): def createSimpleSetup(self, list, mode): nim = self.nimConfig if mode == "single": @@ -346,6 +347,7 @@ class NimSetup(Screen, ConfigListScreen): new_configured_sats = nimmanager.getConfiguredSats() self.unconfed_sats = old_configured_sats - new_configured_sats self.satpos_to_remove = None + self.restoreService(_("Zap back to service before tuner setup?")) self.deleteConfirmed((None, "no")) def deleteConfirmed(self, confirmed): @@ -375,12 +377,13 @@ class NimSetup(Screen, ConfigListScreen): if confirmed[1] == "yestoall" or confirmed[1] == "notoall": self.deleteConfirmed(confirmed) break - if not self.satpos_to_remove: - self.close() def __init__(self, session, slotid): Screen.__init__(self, session) self.list = [ ] + + ServiceStopScreen.__init__(self) + self.stopService() ConfigListScreen.__init__(self, self.list) @@ -405,6 +408,12 @@ class NimSetup(Screen, ConfigListScreen): ConfigListScreen.keyRight(self) self.newConfig() + def keyCancel(self): + if self["config"].isChanged(): + self.session.openWithCallback(self.cancelConfirm, MessageBox, _("Really close without saving settings?")) + else: + self.restoreService(_("Zap back to service before tuner setup?")) + def saveAll(self): if self.nim.isCompatible("DVB-S"): # reset connectedTo to all choices to properly store the default value @@ -424,7 +433,7 @@ class NimSetup(Screen, ConfigListScreen): x[1].cancel() # we need to call saveAll to reset the connectedTo choices self.saveAll() - self.close() + self.restoreService(_("Zap back to service before tuner setup?")) def nothingConnectedShortcut(self): if type(self["config"].getCurrent()[1]) is ConfigSatlist: diff --git a/lib/python/Screens/ServiceStopScreen.py b/lib/python/Screens/ServiceStopScreen.py new file mode 100644 index 00000000..628a93a5 --- /dev/null +++ b/lib/python/Screens/ServiceStopScreen.py @@ -0,0 +1,42 @@ +from Screens.MessageBox import MessageBox + +class ServiceStopScreen: + def __init__(self): + try: + self.session + except: + print "[ServiceStopScreen] ERROR: no self.session set" + + self.oldref = None + self.onClose.append(self.__onClose) + + def pipAvailable(self): + # pip isn't available in every state of e2 + try: + self.session.pipshown + pipavailable = True + except: + pipavailable = False + return pipavailable + + def stopService(self): + self.oldref = self.session.nav.getCurrentlyPlayingServiceReference() + self.session.nav.stopService() + if self.pipAvailable(): + if self.session.pipshown: # try to disable pip + self.session.pipshown = False + del self.session.pip + + def __onClose(self): + self.session.nav.playService(self.oldref) + + def restoreService(self, msg = _("Zap back to previously tuned service?")): + if self.oldref: + self.session.openWithCallback(self.restartPrevService, MessageBox, msg, MessageBox.TYPE_YESNO) + else: + self.restartPrevService(False) + + def restartPrevService(self, yesno): + if not yesno: + self.oldref=None + self.close() \ No newline at end of file diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py index c598b545..406b87cb 100644 --- a/lib/python/Screens/Standby.py +++ b/lib/python/Screens/Standby.py @@ -15,8 +15,6 @@ class Standby(Screen): #restart last played service #unmute adc self.leaveMute() - #set brightness of lcd - config.lcd.bright.apply() #kill me self.close(True) @@ -63,8 +61,6 @@ class Standby(Screen): self.avswitch.setInput("SCART") else: self.avswitch.setInput("AUX") - #set lcd brightness to standby value - config.lcd.standby.apply() self.onFirstExecBegin.append(self.__onFirstExecBegin) self.onClose.append(self.__onClose) diff --git a/lib/python/Tools/HardwareInfo.py b/lib/python/Tools/HardwareInfo.py index 612a565f..e72d2912 100644 --- a/lib/python/Tools/HardwareInfo.py +++ b/lib/python/Tools/HardwareInfo.py @@ -3,7 +3,7 @@ class HardwareInfo: def __init__(self): if HardwareInfo.device_name is not None: - print "using cached result" +# print "using cached result" return HardwareInfo.device_name = "unknown" diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index 9f10644c..558bf0c2 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -1128,11 +1128,7 @@ RESULT eDVBServicePlay::stop() if (length) { - int perc = play_position * 100LL / length; - - /* only store last play position when between 1% and 99% */ - if ((1 < perc) && (perc < 99)) - m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */ + m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */ } m_cuesheet_changed = 1; } diff --git a/po/Makefile.am b/po/Makefile.am index 2319b7fb..9ca79016 100755 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -33,7 +33,6 @@ enigma2.pot: ./xml2po.py ../lib/python/Plugins/SystemPlugins/SoftwareManager/ >> enigma2.pot ./xml2po.py ../lib/python/Plugins/SystemPlugins/CleanupWizard/ >> enigma2.pot ./xml2po.py ../lib/python/Plugins/SystemPlugins/NetworkWizard/ >> enigma2.pot - cat enigma2_rel25.pot | tail -n +19 >> enigma2.pot msguniq --no-location -o enigma2uniq.pot enigma2.pot $(RM) enigma2.pot mv enigma2uniq.pot enigma2.pot diff --git a/po/ar.po b/po/ar.po index 077d4bfb..a8dc3770 100755 --- a/po/ar.po +++ b/po/ar.po @@ -1926,8 +1926,8 @@ msgstr "" msgid "Language selection" msgstr "إختيار اللغه" -msgid "Language..." -msgstr "" +msgid "Language" +msgstr "لغه" msgid "Last config" msgstr "" @@ -5597,9 +5597,6 @@ msgstr "" #~ msgid "LCD Setup" #~ msgstr "ضبط شاشه الكريستال" -#~ msgid "Language" -#~ msgstr "لغه" - #~ msgid "Movie Menu" #~ msgstr "قائمه الافلام" diff --git a/po/ca.po b/po/ca.po index 13b6031b..54ae7776 100755 --- a/po/ca.po +++ b/po/ca.po @@ -1977,8 +1977,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Selecció d'idioma" -msgid "Language..." -msgstr "Idioma..." +msgid "Language" +msgstr "Idioma" msgid "Last config" msgstr "" diff --git a/po/cs.po b/po/cs.po index a7bbd8d0..e529bf69 100755 --- a/po/cs.po +++ b/po/cs.po @@ -1974,8 +1974,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Výběr jazyka" -msgid "Language..." -msgstr "Jazyk..." +msgid "Language" +msgstr "Jazyk" msgid "Last config" msgstr "" diff --git a/po/da.po b/po/da.po index f3c1fa4f..3918f94e 100755 --- a/po/da.po +++ b/po/da.po @@ -2029,8 +2029,8 @@ msgstr "LOF/V" msgid "Language selection" msgstr "Valg af sprog" -msgid "Language..." -msgstr "Sprog..." +msgid "Language" +msgstr "Sprog" msgid "Last config" msgstr "" diff --git a/po/de.po b/po/de.po old mode 100644 new mode 100755 index 2c11213f..1eeb96cc --- a/po/de.po +++ b/po/de.po @@ -1991,8 +1991,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Sprachauswahl" -msgid "Language..." -msgstr "Sprache..." +msgid "Language" +msgstr "Sprache" msgid "Last config" msgstr "Letzte Konfiguration" diff --git a/po/el.po b/po/el.po index 0a9546e2..ee234134 100755 --- a/po/el.po +++ b/po/el.po @@ -1980,7 +1980,7 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Επιλογή γλώσσας" -msgid "Language..." +msgid "Language" msgstr "Γλώσσα " msgid "Last config" diff --git a/po/en.po b/po/en.po index 57fe7d5b..fbf164b2 100755 --- a/po/en.po +++ b/po/en.po @@ -1919,7 +1919,7 @@ msgstr "" msgid "Language selection" msgstr "" -msgid "Language..." +msgid "Language" msgstr "" msgid "Last config" diff --git a/po/enigma2.pot b/po/enigma2.pot old mode 100644 new mode 100755 index 1f79e4e6..cf00a2b6 --- a/po/enigma2.pot +++ b/po/enigma2.pot @@ -4739,7 +4739,7 @@ msgstr "" msgid "Keymap" msgstr "" -msgid "Language..." +msgid "Language" msgstr "" msgid "Limited character set for recording filenames" diff --git a/po/enigma2_rel25.pot b/po/enigma2_rel25.pot deleted file mode 100644 index f7f66eb6..00000000 --- a/po/enigma2_rel25.pot +++ /dev/null @@ -1,6606 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#: ../lib/python/Screens/About.py:63 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:416 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:417 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:418 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:419 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:527 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:528 -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-10-09 13:11+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../lib/python/Components/NimManager.py:948 -#: ../lib/python/Components/NimManager.py:949 -#: ../lib/python/Components/NimManager.py:1043 -#: ../lib/python/Components/NimManager.py:1045 -msgid "%H:%M" -msgstr "" - -#: ../lib/python/Screens/Standby.py:130 -#, python-format -msgid "%d jobs are running in the background!" -msgstr "" - -#: ../lib/python/Screens/EventView.py:149 -#, python-format -msgid "%d min" -msgstr "" - -#: ../lib/python/Components/ServiceScan.py:33 -#: ../lib/python/Components/ServiceScan.py:96 -#: ../lib/python/Components/ServiceScan.py:98 -#, python-format -msgid "%d services found!" -msgstr "" - -#: ../lib/python/Screens/TimeDateInput.py:40 -#: ../lib/python/Screens/TimerEntry.py:105 -#: ../lib/python/Screens/TimerEntry.py:115 -msgid "%d.%B %Y" -msgstr "" - -#: ../lib/python/Screens/About.py:38 -#, python-format -msgid "" -"%s\n" -"(%s, %d MB free)" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:41 -#, python-format -msgid "%s (%s)\n" -msgstr "" - -#: ../lib/python/Components/TimerList.py:36 -#: ../lib/python/Components/TimerList.py:41 -msgid "(ZAP)" -msgstr "" - -#: ../lib/python/Components/NimManager.py:483 -msgid "(empty)" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:326 -msgid "(show optional DVD audio menu)" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:81 -msgid "* Only available if more than one interface is active." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:315 -msgid "* Only available when entering hidden SSID or network key" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:416 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:419 -msgid ".NFI Download failed:" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:465 -msgid "" -".NFI file passed md5sum signature check. You can safely flash this image!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:107 -msgid "/usr/share/enigma2 directory" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:107 -msgid "/var directory" -msgstr "" - -#: ../lib/python/Components/NimManager.py:928 -msgid "1.0" -msgstr "" - -#: ../lib/python/Components/NimManager.py:928 -msgid "1.1" -msgstr "" - -#: ../lib/python/Components/NimManager.py:927 -#: ../lib/python/Components/NimManager.py:928 -msgid "1.2" -msgstr "" - -#: ../lib/python/Components/NimManager.py:924 -msgid "13 V" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:89 -msgid "16:10" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:81 -msgid "16:10 Letterbox" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:82 -msgid "16:10 PanScan" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:79 -#: ../lib/python/Components/AVSwitch.py:88 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDTitle.py:17 -msgid "16:9" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:83 -msgid "16:9 Letterbox" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:80 -msgid "16:9 always" -msgstr "" - -#: ../lib/python/Components/NimManager.py:924 -msgid "18 V" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:13 -msgid "30 minutes" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:87 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDTitle.py:17 -msgid "4:3" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:77 -msgid "4:3 Letterbox" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:78 -msgid "4:3 PanScan" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:13 -msgid "5 minutes" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:13 -msgid "60 minutes" -msgstr "" - -#: ../lib/python/Components/TimerList.py:58 -msgid "" -msgstr "" - -#: ../lib/python/Screens/Menu.py:150 ../lib/python/Screens/Menu.py:153 -msgid "??" -msgstr "" - -#: ../lib/python/Components/NimManager.py:926 ../data/ -msgid "A" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:104 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:313 -#, python-format -msgid "" -"A configuration file (%s) was modified since Installation.\n" -"Do you want to keep your version?" -msgstr "" - -#: ../RecordTimer.py:282 -msgid "" -"A finished record timer wants to set your\n" -"Dreambox to standby. Do that now?" -msgstr "" - -#: ../RecordTimer.py:288 -msgid "" -"A finished record timer wants to shut down\n" -"your Dreambox. Shutdown now?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/plugin.py:96 -msgid "A graphical EPG for all services of an specific bouquet" -msgstr "" - -#: ../RecordTimer.py:363 -#, python-format -msgid "" -"A record has been started:\n" -"%s" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1522 -msgid "" -"A recording is currently running.\n" -"What do you want to do?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:589 -msgid "" -"A recording is currently running. Please stop the recording before trying to " -"configure the positioner." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:264 -msgid "" -"A recording is currently running. Please stop the recording before trying to " -"start the satfinder." -msgstr "" - -#: ../lib/python/Components/Task.py:381 -#, python-format -msgid "A required tool (%s) was not found." -msgstr "" - -#: ../lib/python/Screens/TaskView.py:118 ../SleepTimer.py:34 -msgid "" -"A sleep timer wants to set your\n" -"Dreambox to standby. Do that now?" -msgstr "" - -#: ../lib/python/Screens/TaskView.py:115 ../SleepTimer.py:29 -msgid "" -"A sleep timer wants to shut down\n" -"your Dreambox. Shutdown now?" -msgstr "" - -#: ../RecordTimer.py:232 -msgid "" -"A timer failed to record!\n" -"Disable TV and try again?\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:34 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:211 ../data/ -msgid "A/V Settings" -msgstr "" - -#: ../lib/python/Components/NimManager.py:902 -msgid "AA" -msgstr "" - -#: ../lib/python/Components/NimManager.py:902 -msgid "AB" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:95 ../data/ -msgid "AC3 default" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1595 -#: ../lib/python/Screens/InfoBarGenerics.py:1613 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:97 ../data/ -msgid "AC3 downmix" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:270 -msgid "Abort" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:86 ../data/ -msgid "About..." -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:73 -#: ../lib/python/Screens/SleepTimerEdit.py:75 -msgid "Action:" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1306 -msgid "Activate Picture in Picture" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:857 -msgid "Adapter settings" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:205 -#: ../lib/python/Screens/TimerEdit.py:43 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:138 -msgid "Add" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:199 -msgid "Add Bookmark" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:127 -msgid "Add WLAN configuration?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:204 -msgid "Add a mark" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:43 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:141 -msgid "Add a new title" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:126 -msgid "Add network configuration?" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:74 -#: ../lib/python/Screens/EpgSelection.py:221 -#: ../lib/python/Screens/EpgSelection.py:256 -#: ../lib/python/Screens/EpgSelection.py:372 -#: ../lib/python/Screens/EventView.py:39 ../lib/python/Screens/EventView.py:70 -#: ../lib/python/Screens/EventView.py:106 -#: ../lib/python/Screens/EventView.py:166 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:576 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:611 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:662 -msgid "Add timer" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:43 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:61 -msgid "Add title" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1715 -msgid "Add to bouquet" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1717 -msgid "Add to favourites" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:180 -msgid "" -"Adds enigma2 settings and dreambox model informations like SN, rev... if " -"enabled." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:183 -msgid "Adds network configuration if enabled." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:186 -msgid "Adds wlan configuration if enabled." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py:205 -msgid "" -"Adjust the color settings so that all the color shades are distinguishable, " -"but appear as saturated as possible. If you are happy with the result, press " -"OK to close the video fine-tuning, or use the number keys to select other " -"test screens." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:34 -msgid "Advanced" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:220 -msgid "Advanced Video Setup" -msgstr "" - -#: ../lib/python/Screens/TaskView.py:52 -#: ../lib/python/Screens/TimerEntry.py:185 -msgid "After event" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:129 -msgid "Album" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:660 -#: ../lib/python/Screens/ChannelSelection.py:800 -#: ../lib/python/Screens/MovieSelection.py:202 -msgid "All" -msgstr "" - -#: ../lib/python/Components/NimManager.py:921 -#: ../lib/python/Components/NimManager.py:922 -msgid "All Satellites" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:19 -msgid "Always ask before sending" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:384 -msgid "An empty filename is illegal." -msgstr "" - -#: ../lib/python/Components/Task.py:347 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:168 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:289 -msgid "An unknown error occured!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:125 -msgid "Anonymize crashlog?" -msgstr "" - -#: ../lib/python/Components/Language.py:18 -msgid "Arabic" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:593 -msgid "" -"Are you sure you want to activate this network configuration?\n" -"\n" -msgstr "" - -#: ../lib/python/Screens/Wizard.py:291 -msgid "Are you sure you want to exit this wizard?" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:788 -msgid "" -"Are you sure you want to restart your network interfaces?\n" -"\n" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:125 -msgid "Artist" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:83 -#: ../lib/python/Screens/SleepTimerEdit.py:85 -msgid "Ask before shutdown:" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:37 -#: ../lib/python/Components/UsageConfig.py:39 -#: ../lib/python/Components/UsageConfig.py:41 -msgid "Ask user" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:83 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:77 ../data/ -msgid "Aspect Ratio" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1546 -msgid "Audio Options..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:140 -msgid "Authoring mode" -msgstr "" - -#: ../lib/python/Screens/Ci.py:25 ../lib/python/Screens/ScanSetup.py:550 -#: ../lib/python/Screens/ScanSetup.py:558 -#: ../lib/python/Screens/ScanSetup.py:585 -#: ../lib/python/Screens/ScanSetup.py:592 -#: ../lib/python/Screens/ScanSetup.py:600 -#: ../lib/python/Screens/ScanSetup.py:615 -#: ../lib/python/Screens/ScanSetup.py:628 -#: ../lib/python/Screens/ScanSetup.py:635 -#: ../lib/python/Screens/ScanSetup.py:640 -#: ../lib/python/Screens/ScanSetup.py:644 -#: ../lib/python/Screens/ScanSetup.py:650 -#: ../lib/python/Screens/ScanSetup.py:656 -#: ../lib/python/Tools/Transponder.py:10 ../lib/python/Tools/Transponder.py:15 -#: ../lib/python/Tools/Transponder.py:26 ../lib/python/Tools/Transponder.py:44 -#: ../lib/python/Tools/Transponder.py:50 ../lib/python/Tools/Transponder.py:57 -#: ../lib/python/Tools/Transponder.py:62 ../lib/python/Tools/Transponder.py:72 -#: ../lib/python/Tools/Transponder.py:77 ../lib/python/Tools/Transponder.py:84 -#: ../lib/python/Tools/Transponder.py:91 ../lib/python/Tools/Transponder.py:96 -#: ../lib/python/Tools/Transponder.py:100 -#: ../lib/python/Tools/Transponder.py:106 -#: ../lib/python/Tools/Transponder.py:112 -msgid "Auto" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:89 -msgid "Auto chapter split every ? minutes (0=never)" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:92 ../data/ -msgid "Auto scart switching" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:90 -msgid "Automatic" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:905 ../data/ -msgid "Automatic Scan" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -msgid "Available format variables" -msgstr "" - -#: ../lib/python/Components/NimManager.py:926 ../data/ -msgid "B" -msgstr "" - -#: ../lib/python/Components/NimManager.py:902 -msgid "BA" -msgstr "" - -#: ../lib/python/Components/NimManager.py:902 -msgid "BB" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1221 -#: ../lib/python/Screens/NetworkSetup.py:1226 -#: ../lib/python/Screens/NetworkSetup.py:1231 -#: ../lib/python/Screens/NetworkSetup.py:1236 -#: ../lib/python/Screens/NetworkSetup.py:1241 -msgid "Back" -msgstr "" - -#: ../lib/python/Screens/TaskView.py:31 -msgid "Background" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:73 -msgid "Backup" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:110 -msgid "Backup Location" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:109 -msgid "Backup Mode" -msgstr "" - -#: ../lib/python/Components/NimManager.py:925 -msgid "Band" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ServiceInfo.py:142 -msgid "Bandwidth" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:47 -#: ../lib/python/Screens/Satconfig.py:270 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:90 -msgid "Begin time" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:71 -msgid "Bookmarks" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py:85 ../data/ -msgid "Brightness" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:30 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:883 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:924 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:945 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:47 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:98 -msgid "Burn DVD" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:101 -msgid "Burn existing image to DVD" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/plugin.py:15 -#: ../lib/python/Plugins/Extensions/DVDBurn/plugin.py:16 -msgid "Burn to DVD..." -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:49 -msgid "Bus: " -msgstr "" - -#: ../lib/python/Components/NimManager.py:897 -msgid "C-Band" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:108 -msgid "CF Drive" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:73 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:173 -msgid "CI assignment" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:69 -msgid "CVBS" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:916 -#: ../lib/python/Components/ServiceScan.py:69 -#: ../lib/python/Tools/Transponder.py:48 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:474 -msgid "Cable" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:172 -msgid "Cache Thumbnails" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:33 -msgid "Call monitoring" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:94 -#: ../lib/python/Screens/LocationBox.py:128 ../lib/python/Screens/Setup.py:88 -#: ../lib/python/Screens/TimeDateInput.py:14 -#: ../lib/python/Screens/TimerEntry.py:29 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:101 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:39 -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:30 -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:69 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:34 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:366 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:72 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:160 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:226 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:37 ../data/ -msgid "Cancel" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:354 -msgid "Cannot parse feed directory" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:48 -msgid "Capacity: " -msgstr "" - -#: ../lib/python/Components/Harddisk.py:365 -msgid "Card" -msgstr "" - -#: ../lib/python/Components/Language.py:19 -msgid "Catalan" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:236 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:272 -msgid "Change dir." -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:184 -#: ../lib/python/Screens/ParentalControlSetup.py:18 ../data/ -msgid "Change pin code" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:75 -msgid "Change service pin" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:72 -msgid "Change service pins" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:66 -msgid "Change setup pin" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:175 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDTitle.py:16 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:90 ../data/ -msgid "Channel" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:334 -msgid "Channel not in services list" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:153 -msgid "Channel:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:408 -msgid "Chap." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:409 -msgid "Chapter" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:144 -msgid "Chapter:" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:55 -msgid "Check" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:29 -msgid "Checking Filesystem..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:36 -msgid "Choose source" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:225 -msgid "Choose target folder" -msgstr "" - -#: ../lib/python/Tools/Transponder.py:33 -msgid "Circular left" -msgstr "" - -#: ../lib/python/Tools/Transponder.py:34 -msgid "Circular right" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:165 -msgid "Cleanup" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:398 -#: ../lib/python/Screens/ScanSetup.py:896 -msgid "Clear before scan" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:389 -msgid "Clear log" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:60 -#: ../lib/python/Screens/NetworkSetup.py:207 -#: ../lib/python/Screens/NetworkSetup.py:350 -#: ../lib/python/Screens/NetworkSetup.py:697 -#: ../lib/python/Screens/NetworkSetup.py:1048 -#: ../lib/python/Screens/NetworkSetup.py:1308 -#: ../lib/python/Screens/TaskView.py:47 -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:79 -msgid "Close" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:391 -msgid "Code rate high" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:392 -msgid "Code rate low" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:149 -msgid "Coderate HP" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:148 -msgid "Coderate LP" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:139 -msgid "Collection name" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:46 -msgid "Collection settings" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:88 ../data/ -msgid "Color Format" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:241 -#: ../lib/python/Screens/Satconfig.py:253 -msgid "Command order" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:237 -msgid "Committed DiSEqC command" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:633 -msgid "Common Interface Assignment" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:366 -msgid "Compact Flash" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:515 -#: ../lib/python/Screens/ScanSetup.py:516 -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:581 -msgid "Complete" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:29 -msgid "Complex (allows mixing audio tracks and aspects)" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:35 -msgid "Config" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:92 -#: ../lib/python/Screens/Satconfig.py:144 -#: ../lib/python/Screens/Satconfig.py:178 -#: ../lib/python/Screens/Satconfig.py:289 ../data/ -msgid "Configuration Mode" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:95 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:308 -msgid "Configuring" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:330 -msgid "Conflicting timer" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:274 -msgid "Connect" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:128 -msgid "Connected to" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:99 -msgid "Connected to Fritz!Box!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:163 -msgid "Connected!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:96 -msgid "Connecting to Fritz!Box..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:109 -#, python-format -msgid "" -"Connection to Fritz!Box\n" -"failed! (%s)\n" -"retrying..." -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:150 -msgid "Constellation" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:283 -msgid "Content does not fit on DVD!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:504 -msgid "Continue playing" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py:145 ../data/ -msgid "Contrast" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:326 -msgid "Could not connect to Dreambox .NFI Image Feed Server:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:282 -msgid "Could not load Medium! No disc inserted?" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1429 -#, python-format -msgid "Couldn't record due to conflicting timer %s" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:398 -msgid "Crashlog settings" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:403 -msgid "CrashlogAutoSubmit" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:403 -msgid "CrashlogAutoSubmit settings" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:92 -msgid "CrashlogAutoSubmit settings..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:342 -msgid "" -"Crashlogs found!\n" -"Send them to Dream Multimedia ?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:30 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:889 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:930 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:100 -msgid "Create DVD-ISO" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Create movie folder failed" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:250 -#, python-format -msgid "Creating directory %s failed." -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Creating partition failed" -msgstr "" - -#: ../lib/python/Components/Language.py:20 -msgid "Croatian" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:937 -msgid "Current Transponder" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:335 -msgid "Current settings:" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:35 -msgid "Current version:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:81 -msgid "Cut" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:421 -msgid "Cutlist editor..." -msgstr "" - -#: ../lib/python/Components/Language.py:21 -msgid "Czech" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1287 -msgid "DHCP" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:544 -msgid "DVB-S" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:545 -msgid "DVB-S2" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:694 -msgid "DVD Player" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:151 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:94 -msgid "DVD media toolbox" -msgstr "" - -#: ../lib/python/Components/Language.py:22 -msgid "Danish" -msgstr "" - -#: ../lib/python/Screens/TimeDateInput.py:46 -#: ../lib/python/Screens/TimerEntry.py:164 -msgid "Date" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:163 -msgid "Decide what should be done when crashlogs are found." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:166 -msgid "Decide what should happen to the crashlogs after submission." -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:78 ../data/ -msgid "Deep Standby" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:206 -#: ../lib/python/Screens/TimerEdit.py:131 -msgid "Delete" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:21 -msgid "Delete crashlogs" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:386 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:492 -msgid "Delete entry" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:143 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:653 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:712 -msgid "Delete failed!" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:327 -#, python-format -msgid "" -"Delete no more configured satellite\n" -"%s?" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:135 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDTitle.py:15 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:74 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:90 -msgid "Description" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:270 -msgid "Destination directory" -msgstr "" - -#: ../lib/python/Screens/About.py:34 -msgid "Detected HDD:" -msgstr "" - -#: ../lib/python/Screens/About.py:17 -msgid "Detected NIMs:" -msgstr "" - -#: ../lib/python/Components/NimManager.py:909 -msgid "DiSEqC A/B" -msgstr "" - -#: ../lib/python/Components/NimManager.py:909 -msgid "DiSEqC A/B/C/D" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:233 -msgid "DiSEqC mode" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:256 -msgid "DiSEqC repeats" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:189 -msgid "Dialing:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:28 -msgid "Direct playback of linked titles without menu" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:382 -#, python-format -msgid "Directory %s nonexistent." -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:144 -#: ../lib/python/Screens/TimerEdit.py:417 -#: ../lib/python/Screens/TimerEdit.py:437 -msgid "Disable" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -msgid "Disable Picture in Picture" -msgstr "" - -#: ../lib/python/Screens/Subtitles.py:36 -msgid "Disable Subtitles" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:19 -msgid "Disable crashlog reporting" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:75 -msgid "Disable timer" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:29 -msgid "Disabled" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:268 -msgid "Disconnect" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:105 -#, python-format -msgid "" -"Disconnected from\n" -"Fritz!Box! (%s)\n" -"retrying..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:83 -msgid "Display 16:9 content as" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:80 -msgid "Display 4:3 content as" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:81 -msgid "Display >16:9 content as" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:123 -#, python-format -msgid "" -"Do you really want to REMOVE\n" -"the plugin \"%s\"?" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:84 -msgid "" -"Do you really want to check the filesystem?\n" -"This could take lots of time!" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:235 -#: ../lib/python/Screens/EventView.py:85 ../lib/python/Screens/InfoBar.py:195 -#: ../lib/python/Screens/MovieSelection.py:126 -#: ../lib/python/Screens/TimerEdit.py:206 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:590 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:645 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:698 -#, python-format -msgid "Do you really want to delete %s?" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:121 -#, python-format -msgid "" -"Do you really want to download\n" -"the plugin \"%s\"?" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:82 -msgid "" -"Do you really want to initialize the harddisk?\n" -"All data on the disk will be lost!" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:269 -#, python-format -msgid "Do you really want to remove directory %s from the disk?" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:224 -#, python-format -msgid "Do you really want to remove your bookmark of %s?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:120 -msgid "" -"Do you want to backup now?\n" -"After pressing OK, please wait!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:423 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:202 -msgid "Do you want to burn this collection to DVD medium?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:587 -msgid "Do you want to play DVD in drive?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:407 -msgid "Do you want to preview this DVD before burning?" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1864 -msgid "Do you want to resume this playback?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:169 -msgid "" -"Do you want to submit your email address and name so that we can contact you " -"if needed?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:37 -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:136 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:53 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:222 -msgid "" -"Do you want to update your Dreambox?\n" -"After pressing OK, please wait!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:19 -msgid "Don't ask, just send" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:101 -msgid "Don't stop current event but disable coming events" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:328 -#, python-format -msgid "Done - Installed or upgraded %d packages" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:57 -#, python-format -msgid "Done - Installed or upgraded %d packages with %d errors" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:234 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:365 -msgid "Download" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:726 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/plugin.py:16 -msgid "Download .NFI-Files for USB-Flasher" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:22 -msgid "Download Plugins" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:505 -msgid "Download of USB flasher boot image failed: " -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:134 -msgid "Downloadable new plugins" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:82 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:295 -msgid "Downloading" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:92 -msgid "Downloading plugin information. Please wait..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:28 -msgid "Dreambox format data DVD (HDTV compatible)" -msgstr "" - -#: ../lib/python/Components/Language.py:23 -msgid "Dutch" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:924 -#: ../lib/python/Screens/Satconfig.py:325 -#: ../lib/python/Components/ServiceScan.py:51 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:482 -msgid "E" -msgstr "" - -#: ../lib/python/Components/ServiceScan.py:101 -#, python-format -msgid "ERROR - failed to scan (%s)!" -msgstr "" - -#: ../lib/python/Components/NimManager.py:916 -msgid "East" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:425 -msgid "Edit" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:352 -msgid "Edit DNS" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:41 -msgid "Edit Title" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:102 -msgid "Edit chapters of current title" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:78 -msgid "Edit services list" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1305 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:500 -msgid "Edit settings" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:824 -msgid "Edit the Nameserver configuration of your Dreambox.\n" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:820 -msgid "Edit the network configuration of your Dreambox.\n" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:137 -msgid "Edit title" -msgstr "" - -#: ../lib/python/Screens/Subtitles.py:44 -#: ../lib/python/Screens/TimerEdit.py:136 -#: ../lib/python/Screens/TimerEdit.py:409 -#: ../lib/python/Screens/TimerEdit.py:429 -msgid "Enable" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:183 -msgid "Enable 5V for active antenna" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:60 -msgid "Enable parental control" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:73 -msgid "Enable timer" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:27 -msgid "Enabled" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:501 -msgid "Encryption" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:509 -#: ../lib/python/Screens/NetworkSetup.py:512 -msgid "Encryption Key" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:508 -msgid "Encryption Keytype" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:505 -msgid "Encryption Type" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:48 -#: ../lib/python/Screens/Satconfig.py:271 -msgid "End time" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:171 -msgid "EndTime" -msgstr "" - -#: ../lib/python/Components/Language.py:16 -msgid "English" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:85 -msgid "" -"Enigma2 Skinselector v0.5 BETA\n" -"\n" -"If you experience any problems please contact\n" -"stephan@reichholf.net\n" -"\n" -"© 2006 - Stephan Reichholf" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:528 -msgid "Enter WLAN network name/SSID:" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:530 -msgid "Enter WLAN passphrase/key:" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:345 -msgid "Enter main menu..." -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:184 -msgid "Enter the service pin" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:172 -msgid "Enter your email address so that we can contact you if needed." -msgstr "" - -#: ../lib/python/Components/Task.py:284 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:213 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:337 -msgid "Error" -msgstr "" - -#: ../lib/python/Plugins/Extensions/TuxboxPlugins/pluginrunner.py:34 -msgid "Error executing plugin" -msgstr "" - -#: ../lib/python/Components/Task.py:282 -#, python-format -msgid "" -"Error: %s\n" -"Retry?" -msgstr "" - -#: ../lib/python/Components/Language.py:24 -msgid "Estonian" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Everything is fine" -msgstr "" - -#: ../lib/python/Screens/Console.py:44 -msgid "Execution Progress:" -msgstr "" - -#: ../lib/python/Screens/Console.py:56 -msgid "Execution finished!!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:61 -msgid "Exif" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:34 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:104 -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:504 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:232 -msgid "Exit" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:206 -msgid "Exit editor" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:46 -msgid "Expert" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:881 -msgid "Extended Networksetup Plugin..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:877 -msgid "Extended Setup..." -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:356 -#: ../lib/python/Screens/ScanSetup.py:358 -#: ../lib/python/Screens/ScanSetup.py:385 -#: ../lib/python/Screens/ServiceInfo.py:147 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:447 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:449 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:85 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:87 -msgid "FEC" -msgstr "" - -#: ../lib/python/Components/Task.py:41 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:447 -msgid "Failed" -msgstr "" - -#: ../lib/python/Components/NimManager.py:918 -msgid "Fast" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:238 -msgid "Fast DiSEqC" -msgstr "" - -#: ../lib/python/Components/NimManager.py:918 -msgid "Fast epoch" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:663 -msgid "Favourites" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Filesystem contains uncorrectable errors" -msgstr "" - -#: ../lib/python/Components/Task.py:41 -msgid "Finished" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:195 -msgid "Finished configuring your network" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:949 -msgid "Finished restarting your network" -msgstr "" - -#: ../lib/python/Components/Language.py:25 -msgid "Finnish" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:484 -msgid "" -"First we need to download the latest boot environment for the USB flasher." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:144 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:251 -msgid "Flash" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:247 -msgid "Flashing failed" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:123 -msgid "Format" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:174 -msgid "Frame size in full view" -msgstr "" - -#: ../lib/python/Components/Language.py:26 -msgid "French" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:381 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ServiceInfo.py:140 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:442 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:80 -msgid "Frequency" -msgstr "" - -#: ../lib/python/Components/NimManager.py:1071 -msgid "Frequency bands" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:166 -msgid "Frequency scan step size(khz)" -msgstr "" - -#: ../lib/python/Components/NimManager.py:1071 -msgid "Frequency steps" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Fri" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:160 -msgid "Friday" -msgstr "" - -#: ../lib/python/Components/Language.py:44 -msgid "Frisian" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:34 -msgid "Fritz!Box FON IP address" -msgstr "" - -#: ../lib/python/Screens/About.py:23 -#, python-format -msgid "Frontprocessor version: %d" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Fsck failed" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:62 -msgid "Function not yet implemented" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:107 -msgid "" -"GUI needs a restart to apply a new skin\n" -"Do you want to Restart the GUI now?" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:339 -#: ../lib/python/Screens/NetworkSetup.py:481 ../data/ -msgid "Gateway" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:133 -msgid "Genre" -msgstr "" - -#: ../lib/python/Components/Language.py:17 -msgid "German" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:94 -msgid "Getting plugin information. Please wait..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:195 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:253 -msgid "Goto 0" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:250 -msgid "Goto position" -msgstr "" - -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/plugin.py:95 -msgid "Graphical Multi EPG" -msgstr "" - -#: ../lib/python/Components/Language.py:27 -msgid "Greek" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:152 -msgid "Guard Interval" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:395 -msgid "Guard interval mode" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:364 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:108 -#: ../data/ -msgid "Harddisk" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:496 -msgid "Hidden network SSID" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:153 -msgid "Hierarchy Information" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:396 -msgid "Hierarchy mode" -msgstr "" - -#: ../lib/python/Screens/Ci.py:335 -msgid "High bitrate support" -msgstr "" - -#: ../lib/python/Tools/Transponder.py:31 -msgid "Horizontal" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1498 -msgid "How many minutes do you want to record?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:120 -msgid "How to handle found crashlogs?" -msgstr "" - -#: ../lib/python/Components/Language.py:28 -msgid "Hungarian" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:337 -#: ../lib/python/Screens/NetworkSetup.py:476 -#: ../lib/python/Screens/NetworkSetup.py:1293 ../data/ -msgid "IP Address" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:288 -msgid "ISO file is too large for this filesystem!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:143 -msgid "ISO path" -msgstr "" - -#: ../lib/python/Components/Language.py:31 -msgid "Icelandic" -msgstr "" - -#: ../lib/python/Screens/Scart.py:25 -msgid "" -"If you see this, something is wrong with\n" -"your scart connection. Press OK to return." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py:87 -msgid "" -"If your TV has a brightness or contrast enhancement, disable it. If there is " -"something called \"dynamic\", set it to standard. Adjust the backlight level " -"to a value suiting your taste. Turn down contrast on your TV as much as " -"possible.\n" -"Then turn the brightness setting as low as possible, but make sure that the " -"two lowermost shades of gray stay distinguishable.\n" -"Do not care about the bright shades now. They will be set up in the next " -"step.\n" -"If you are happy with the result, press OK." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:52 -msgid "Image flash utility" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:32 -msgid "Image-Upgrade" -msgstr "" - -#: ../lib/python/Components/Task.py:41 -msgid "In Progress" -msgstr "" - -#: ../RecordTimer.py:235 -msgid "" -"In order to record a timer, the TV was switched to the recording service!\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:122 -msgid "Include your email and name (optional) in the mail?" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:285 -msgid "Increased voltage" -msgstr "" - -#: ../lib/python/Screens/Ci.py:322 -msgid "Init" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:53 -msgid "Initialize" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:26 -msgid "Initializing Harddisk..." -msgstr "" - -#: ../lib/python/Screens/InputBox.py:11 ../data/ -msgid "Input" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:91 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:304 -msgid "Installing" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1364 -msgid "Instant Record..." -msgstr "" - -#: ../lib/python/Components/Network.py:313 -msgid "Integrated Ethernet" -msgstr "" - -#: ../lib/python/Components/Network.py:315 -msgid "Integrated Wireless" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:45 -msgid "Intermediate" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:371 -msgid "Internal Flash" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:396 -msgid "Invalid Location" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:275 -#, python-format -msgid "Invalid directory selected: %s" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:352 -#: ../lib/python/Screens/ScanSetup.py:382 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ServiceInfo.py:144 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:443 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:81 -msgid "Inversion" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:135 -msgid "Is this videomode ok?" -msgstr "" - -#: ../lib/python/Components/Language.py:32 -msgid "Italian" -msgstr "" - -#. TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect) -#: ../lib/python/Components/AVSwitch.py:98 -#: ../lib/python/Components/AVSwitch.py:108 -msgid "Just Scale" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1271 -msgid "LAN Adapter" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:229 -msgid "LNB" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:278 -msgid "LOF" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:282 -msgid "LOF/H" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:281 -msgid "LOF/L" -msgstr "" - -#: ../lib/python/Components/Language.py:98 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:150 ../data/ -msgid "Language selection" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:100 -msgid "Last speed" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:37 -#: ../lib/python/Screens/Satconfig.py:260 ../data/ -msgid "Latitude" -msgstr "" - -#: ../lib/python/Components/Language.py:30 -msgid "Latvian" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:511 -msgid "Leave DVD Player?" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1596 -#: ../lib/python/Screens/InfoBarGenerics.py:1601 -msgid "Left" -msgstr "" - -#. TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term. -#: ../lib/python/Components/AVSwitch.py:94 -msgid "Letterbox" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:245 -msgid "Limit east" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:244 -msgid "Limit west" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:243 -msgid "Limits off" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:246 -msgid "Limits on" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:839 -msgid "Link:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:28 -msgid "Linked titles with a DVD menu" -msgstr "" - -#: ../lib/python/Components/FileList.py:173 -#: ../lib/python/Components/config.py:951 -msgid "List of Storage Devices" -msgstr "" - -#: ../lib/python/Components/Language.py:29 -msgid "Lithuanian" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:103 -msgid "Load" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1280 -msgid "Local Network" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:178 -msgid "Location" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:595 -msgid "Log results to harddisk" -msgstr "" - -#: ../lib/python/Screens/HelpMenu.py:36 -msgid "Long Keypress" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:35 -#: ../lib/python/Screens/Satconfig.py:258 ../data/ -msgid "Longitude" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:367 -msgid "MMC Card" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:201 -msgid "Make this mark an 'in' point" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:202 -msgid "Make this mark an 'out' point" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:203 -msgid "Make this mark just a mark" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:469 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140 -msgid "Manual transponder" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:949 -msgid "Media player" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:137 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:167 -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:281 -msgid "Medium is not a writeable DVD!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:286 -msgid "Medium is not empty!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:145 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:147 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:148 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:149 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:150 ../data/ -msgid "Menu" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Mkfs failed" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:96 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:61 -msgid "Mode" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:47 -msgid "Model: " -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:359 -#: ../lib/python/Screens/ScanSetup.py:384 -#: ../lib/python/Screens/ScanSetup.py:393 -#: ../lib/python/Screens/ServiceInfo.py:138 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:450 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:88 -msgid "Modulation" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Mon" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:103 -msgid "Mon-Fri" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:156 -msgid "Monday" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Mount failed" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1312 -msgid "Move Picture in Picture" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:236 -msgid "Move east" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:233 -msgid "Move west" -msgstr "" - -#: ../lib/python/Screens/EventView.py:212 -msgid "Multi EPG" -msgstr "" - -#: ../lib/python/Screens/Ci.py:333 -msgid "Multiple service support" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:514 -msgid "Multisat" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:362 -#: ../lib/python/Screens/NetworkSetup.py:366 -#: ../lib/python/Screens/NetworkSetup.py:369 -#: ../lib/python/Screens/NetworkSetup.py:373 -#: ../lib/python/Screens/NetworkSetup.py:376 -#: ../lib/python/Components/NimManager.py:605 -#: ../lib/python/Components/NimManager.py:610 -#: ../lib/python/Components/NimManager.py:729 -msgid "N/A" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:242 -msgid "NFI image flashing completed. Press Yellow to Reboot!" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:110 -msgid "NTSC" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:134 -msgid "Name" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1299 ../data/ -msgid "Nameserver" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:244 -#, python-format -msgid "Nameserver %d" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:858 -msgid "Nameserver settings" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:338 -#: ../lib/python/Screens/NetworkSetup.py:477 ../data/ -msgid "Netmask" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:368 -msgid "Network Mount" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:494 -#: ../lib/python/Screens/NetworkSetup.py:499 -msgid "Network SSID" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:397 -msgid "Network scan" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:859 -msgid "Network test" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:346 -#: ../lib/python/Screens/NetworkSetup.py:837 -msgid "Network:" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:886 -msgid "NetworkWizard" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:908 -msgid "New" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:235 -msgid "New pin" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:36 -msgid "New version:" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:60 -msgid "Next" -msgstr "" - -#: ../lib/python/Screens/Ci.py:25 ../lib/python/Screens/Ci.py:27 -#: ../lib/python/Screens/InfoBar.py:167 ../data/ -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "No" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:285 -msgid "No (supported) DVDROM found!" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1517 -msgid "No HDD found or HDD not initialized!" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:433 -msgid "No Networks found" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2174 -msgid "" -"No data on transponder!\n" -"(Timeout reading PAT)" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:375 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:390 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:155 -msgid "No details for this image file" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1404 -msgid "No event info found, recording indefinitely." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2172 -msgid "No free tuner!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:334 -msgid "" -"No packages were upgraded yet. So you can check your network and try again." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:586 -msgid "No positioner capable frontend found." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:261 -msgid "No satellite frontend found!!" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:425 -msgid "No tags are set on these movies." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:601 -msgid "No tuner is configured for use with a diseqc positioner!" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:720 -msgid "" -"No tuner is enabled!\n" -"Please setup your tuner settings before you start a service scan." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:564 -msgid "No useable USB stick found" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:131 -msgid "" -"No valid service PIN found!\n" -"Do you like to change the service PIN now?\n" -"When you say 'No' here the service protection stay disabled!" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:129 -msgid "" -"No valid setup PIN found!\n" -"Do you like to change the setup PIN now?\n" -"When you say 'No' here the setup protection stay disabled!" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:54 -msgid "" -"No working local network adapter found.\n" -"Please verify that you have attached a network cable and your network is " -"configured correctly." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:53 -msgid "" -"No working wireless network adapter found.\n" -"Please verify that you have attached a compatible WLAN device and your " -"network is configured correctly." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:701 -msgid "" -"No working wireless network interface found.\n" -" Please verify that you have attached a compatible WLAN device or enable " -"your local network interface." -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:169 -msgid "No, but restart from begin" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:281 -msgid "No, not now" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:282 -msgid "No, send them never" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:564 -#: ../lib/python/Screens/ScanSetup.py:607 -#: ../lib/python/Screens/ScanSetup.py:652 -#: ../lib/python/Components/NimManager.py:902 -#: ../lib/python/Components/NimManager.py:905 -#: ../lib/python/Components/NimManager.py:926 -#: ../lib/python/Components/NimManager.py:928 -#: ../lib/python/Components/NimManager.py:934 -#: ../lib/python/Tools/Transponder.py:14 ../lib/python/Tools/Transponder.py:61 -#: ../lib/python/Tools/Transponder.py:107 -msgid "None" -msgstr "" - -#. TRANSLATORS: (aspect ratio policy: display as fullscreen, with stretching the left/right) -#: ../lib/python/Components/AVSwitch.py:106 -msgid "Nonlinear" -msgstr "" - -#: ../lib/python/Components/NimManager.py:917 -msgid "North" -msgstr "" - -#: ../lib/python/Components/Language.py:33 -msgid "Norwegian" -msgstr "" - -#: ../lib/python/Components/Task.py:368 -#, python-format -msgid "" -"Not enough diskspace. Please free up some diskspace and try again. (%d MB " -"required, %d MB available)" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:835 -#: ../lib/python/Screens/ScanSetup.py:837 -#: ../lib/python/Screens/ScanSetup.py:981 -#: ../lib/python/Screens/ScanSetup.py:983 -#: ../lib/python/Plugins/SystemPlugins/DefaultServicesScanner/plugin.py:90 -msgid "" -"Nothing to scan!\n" -"Please setup your tuner settings before you start a service scan." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/VideoFinetune.py:147 -msgid "" -"Now, use the contrast setting to turn up the brightness of the background as " -"much as possible, but make sure that you can still see the difference " -"between the two brightest levels of shades.If you have done that, press OK." -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:91 ../lib/python/Screens/Setup.py:87 -#: ../lib/python/Screens/TimeDateInput.py:13 -#: ../lib/python/Screens/TimerEntry.py:28 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:102 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:210 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:40 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:71 -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:36 ../data/ -msgid "OK" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:100 -msgid "OSD visibility" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1595 -#: ../lib/python/Screens/InfoBarGenerics.py:1613 -#: ../lib/python/Components/NimManager.py:925 -#: ../lib/python/Tools/Transponder.py:12 ../lib/python/Tools/Transponder.py:46 -#: ../lib/python/Tools/Transponder.py:59 -#: ../lib/python/Tools/Transponder.py:114 -msgid "Off" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1595 -#: ../lib/python/Screens/InfoBarGenerics.py:1613 -#: ../lib/python/Components/NimManager.py:925 -#: ../lib/python/Tools/Transponder.py:11 ../lib/python/Tools/Transponder.py:45 -#: ../lib/python/Tools/Transponder.py:58 -#: ../lib/python/Tools/Transponder.py:113 -msgid "On" -msgstr "" - -#: ../lib/python/Components/NimManager.py:934 -msgid "One" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:33 -msgid "Online-Upgrade" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:399 -msgid "Only Free scan" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:176 -msgid "Optionally enter your name if you want to." -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:139 -msgid "Orbital Position" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:110 -msgid "PAL" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:87 -msgid "PIDs" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:278 -msgid "Package list update" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:37 -msgid "Packet management" -msgstr "" - -#: ../lib/python/Screens/Subtitles.py:52 ../lib/python/Screens/Subtitles.py:55 -#: ../lib/python/Screens/Subtitles.py:57 -msgid "Page" -msgstr "" - -#. TRANSLATORS: (aspect ratio policy: cropped content on left/right) in doubt, keep english term -#: ../lib/python/Components/AVSwitch.py:96 -#: ../lib/python/Components/AVSwitch.py:104 -msgid "Pan&Scan" -msgstr "" - -#: ../lib/python/Components/FileList.py:175 -msgid "Parent Directory" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:80 ../data/ -msgid "Parental control" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:70 -msgid "Parental control type" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:113 -msgid "Password" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:41 -msgid "Pause movie at end" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:114 -msgid "Phone number" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:595 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:596 -msgid "PicturePlayer" -msgstr "" - -#. TRANSLATORS: (aspect ratio policy: black bars on left/right) in doubt, keep english term. -#: ../lib/python/Components/AVSwitch.py:102 -msgid "Pillarbox" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ServiceInfo.py:145 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:453 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:91 -msgid "Pilot" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:98 -msgid "Play" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:480 -msgid "Play Audio-CD..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:510 -msgid "Play DVD" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:45 -msgid "Play recorded movies..." -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Please Reboot" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaScanner/plugin.py:48 -msgid "Please Select Medium to be Scanned" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1483 -msgid "Please change recording endtime" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:326 -msgid "Please check your network settings!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:266 -msgid "Please choose .NFI image file from feed server to download" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:498 -#: ../lib/python/Screens/InfoBarGenerics.py:1228 -msgid "Please choose an extension..." -msgstr "" - -#: ../lib/python/Screens/DefaultWizard.py:95 -msgid "Please choose he package..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:538 -msgid "" -"Please disconnect all USB devices from your Dreambox and (re-)attach the " -"target USB stick (minimum size is 64 MB) now!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:56 -msgid "Please do not change any values unless you know what you are doing!" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:172 -msgid "Please enter a name for the new bouquet" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:229 -msgid "Please enter a name for the new marker" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:372 -msgid "Please enter a new filename" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:598 -msgid "Please enter filename (empty = use current date)" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:239 -msgid "Please enter name of the new directory" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:24 -msgid "Please enter the correct pin code" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:255 -msgid "Please enter the old pin code" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:104 -msgid "Please enter your email address here:" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:106 -msgid "Please enter your name here (optional):" -msgstr "" - -#: ../RecordTimer.py:365 -msgid "" -"Please note that the previously selected media could not be accessed and " -"therefore the default directory is being used instead." -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:264 -msgid "Please press OK to continue." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:21 -msgid "Please press OK!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:53 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:87 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:203 -msgid "Please select .NFI flash image file from medium" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:640 -msgid "Please select a playlist to delete..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:619 -msgid "Please select a playlist..." -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:325 -msgid "Please select a subservice to record..." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1724 -#: ../lib/python/Screens/SubservicesQuickzap.py:106 -msgid "Please select a subservice..." -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:422 -msgid "Please select tag to filter..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:256 -msgid "Please select target directory or medium" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:367 -msgid "Please select the movie path..." -msgstr "" - -#: ../lib/python/Screens/PiPSetup.py:34 -msgid "" -"Please use direction keys to move the PiP window.\n" -"Press Bouquet +/- to resize the window.\n" -"Press OK to go back to the TV mode or EXIT to cancel the moving." -msgstr "" - -#: ../lib/python/Components/Language.py:97 -msgid "" -"Please use the UP and DOWN keys to select your language. Afterwards press " -"the OK button." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:612 -msgid "Please wait for activation of your network configuration..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:235 -msgid "Please wait while scanning is in progress..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:182 -msgid "Please wait while we configure your network..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:936 -msgid "Please wait while your network is restarting..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1150 -#: ../lib/python/Screens/NetworkSetup.py:1173 -#: ../lib/python/Screens/NetworkSetup.py:1180 -msgid "Please wait..." -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:180 -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:67 -msgid "Please wait... Loading list..." -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:445 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:83 -msgid "Polarity" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:143 -#: ../lib/python/Components/NimManager.py:924 -msgid "Polarization" -msgstr "" - -#: ../lib/python/Components/Language.py:34 -msgid "Polish" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:22 -msgid "Port A" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:25 -msgid "Port B" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:27 -msgid "Port C" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:28 -msgid "Port D" -msgstr "" - -#: ../lib/python/Components/Language.py:35 -msgid "Portuguese" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:436 -#: ../lib/python/Components/NimManager.py:910 -msgid "Positioner" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 -msgid "Positioner fine movement" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 -msgid "Positioner movement" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:605 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:611 -msgid "Positioner setup" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:194 -msgid "Positioner storage" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:43 -#: ../lib/python/Screens/Satconfig.py:266 -msgid "Power threshold in mA" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:470 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:140 -msgid "Predefined transponder" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:21 -msgid "Preparing... Please wait" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:55 -#: ../lib/python/Screens/NetworkSetup.py:296 -#: ../lib/python/Screens/NetworkSetup.py:699 -msgid "Press OK on your remote control to continue." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:208 -#: ../lib/python/Screens/NetworkSetup.py:348 -msgid "Press OK to activate the settings." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:61 -msgid "Press OK to edit the settings." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:559 -#, python-format -msgid "Press OK to get further details for %s" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:906 -msgid "Press OK to scan" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:300 -msgid "Press OK to start the scan" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:391 -msgid "Press OK to view full changelog" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:59 -msgid "Prev" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:95 -msgid "Preview menu" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:330 -msgid "Primary DNS" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:44 -msgid "Properties of current title" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:68 -msgid "Protect services" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:64 -msgid "Protect setup" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:662 -#: ../lib/python/Screens/ChannelSelection.py:796 -#: ../lib/python/Components/NimManager.py:1073 -msgid "Provider" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:150 -msgid "Provider to scan" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:906 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:468 -msgid "Providers" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:581 -msgid "Quick" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1715 -#: ../lib/python/Screens/InfoBarGenerics.py:1717 -#: ../lib/python/Screens/InfoBarGenerics.py:1720 -msgid "Quickzap" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:69 -msgid "RGB" -msgstr "" - -#: ../lib/python/Plugins/Extensions/SimpleRSS/plugin.py:45 -msgid "RSS Feed URI" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:369 -msgid "Ram Disk" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:581 -msgid "Random" -msgstr "" - -#: ../lib/python/Components/ConfigList.py:196 -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:225 -msgid "Really close without saving settings?" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:193 -msgid "Really delete done timers?" -msgstr "" - -#: ../lib/python/Screens/SubservicesQuickzap.py:117 -msgid "Really exit the subservices quickzap?" -msgstr "" - -#: ../lib/python/Screens/Standby.py:135 -msgid "Really reboot now?" -msgstr "" - -#: ../lib/python/Screens/Standby.py:139 -msgid "Really restart now?" -msgstr "" - -#: ../lib/python/Screens/Standby.py:133 -msgid "Really shutdown now?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:243 -msgid "Reboot" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 ../data/ -msgid "Record" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1427 -#, python-format -msgid "Record time limited due to conflicting timer %s" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:351 -msgid "Recorded files..." -msgstr "" - -#: ../lib/python/Screens/EventView.py:116 -msgid "Recording" -msgstr "" - -#: ../lib/python/Screens/Standby.py:124 -msgid "Recording(s) are in progress or coming up in few seconds!" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:236 -msgid "Reenter new pin" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:65 -msgid "Refresh Rate" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:93 -#: ../lib/python/Screens/LocationBox.py:206 -msgid "Remove Bookmark" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:21 -msgid "Remove Plugins" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:205 -msgid "Remove a mark" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:45 -msgid "Remove currently selected title" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:136 -msgid "Remove plugins" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:468 -msgid "Remove the broken .NFI file?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:416 -msgid "Remove the incomplete .NFI file?" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:253 -#: ../lib/python/Screens/EpgSelection.py:369 -#: ../lib/python/Screens/EventView.py:103 -#: ../lib/python/Screens/EventView.py:163 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:608 -#: ../lib/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py:659 -msgid "Remove timer" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:45 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:241 -msgid "Remove title" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:285 -#, python-format -msgid "Removing directory %s failed. (Maybe not empty.)" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:92 -msgid "Rename" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:21 -msgid "Rename crashlogs" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:138 -msgid "Repeat Type" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:102 -msgid "Repeating event currently recording... What do you want to do?" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:144 -msgid "Repeats" -msgstr "" - -#: ../lib/python/Screens/Ci.py:321 -msgid "Reset" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:103 -msgid "Reset and renumerate title names" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:63 -msgid "Resolution" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:108 -msgid "Restart GUI now?" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:860 -msgid "Restart network" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1250 -#: ../lib/python/Screens/NetworkSetup.py:1379 -msgid "Restart test" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:830 -msgid "Restart your network connection and interfaces.\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:161 -msgid "Restore" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:37 -msgid "Resume from last position" -msgstr "" - -#. TRANSLATORS: The string "Resuming playback" flashes for a moment -#. TRANSLATORS: at the start of a movie, when the user has selected -#. TRANSLATORS: "Resume from last position" as start behavior. -#. TRANSLATORS: The purpose is to notify the user that the movie starts -#. TRANSLATORS: in the middle somewhere and not from the beginning. -#. TRANSLATORS: (Some translators seem to have interpreted it as a -#. TRANSLATORS: question or a choice, but it is a statement.) -#: ../lib/python/Screens/InfoBarGenerics.py:1873 -msgid "Resuming playback" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:506 -msgid "Return to file browser" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:39 -#: ../lib/python/Components/UsageConfig.py:41 -msgid "Return to movie list" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:39 -#: ../lib/python/Components/UsageConfig.py:41 -msgid "Return to previous service" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1596 -#: ../lib/python/Screens/InfoBarGenerics.py:1601 -msgid "Right" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:361 -#: ../lib/python/Screens/ServiceInfo.py:146 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:452 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:90 -msgid "Rolloff" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:44 -#: ../lib/python/Screens/Satconfig.py:267 -msgid "Rotor turning speed" -msgstr "" - -#: ../lib/python/Screens/Subtitles.py:42 -msgid "Running" -msgstr "" - -#: ../lib/python/Components/Language.py:36 -msgid "Russian" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:69 -msgid "S-Video" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Sat" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:19 -#: ../lib/python/Screens/Satconfig.py:133 -#: ../lib/python/Screens/Satconfig.py:291 -#: ../lib/python/Screens/ScanSetup.py:350 -#: ../lib/python/Screens/ScanSetup.py:366 -#: ../lib/python/Components/ServiceScan.py:40 -#: ../lib/python/Tools/Transponder.py:8 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:430 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:67 -msgid "Satellite" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:68 -#: ../lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py:74 -msgid "Satellite Equipment Setup" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:661 -#: ../lib/python/Screens/ChannelSelection.py:798 -msgid "Satellites" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:273 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:279 ../data/ -msgid "Satfinder" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:424 -msgid "Sats" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:161 -msgid "Saturday" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:105 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:210 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:213 -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:70 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:367 -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:80 -msgid "Save" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:598 -msgid "Save Playlist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:171 -msgid "Scaling Mode" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:902 -msgid "Scan " -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:170 -msgid "Scan QAM128" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:167 -msgid "Scan QAM16" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:171 -msgid "Scan QAM256" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:168 -msgid "Scan QAM32" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:169 -msgid "Scan QAM64" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:173 -msgid "Scan SR6875" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:172 -msgid "Scan SR6900" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:870 -msgid "Scan Wireless Networks" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:174 -#: ../lib/python/Screens/Satconfig.py:175 -msgid "Scan additional SR" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:159 -msgid "Scan band EU HYPER" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:154 -msgid "Scan band EU MID" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:158 -msgid "Scan band EU SUPER" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:156 -msgid "Scan band EU UHF IV" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:157 -msgid "Scan band EU UHF V" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:153 -msgid "Scan band EU VHF I" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:155 -msgid "Scan band EU VHF III" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:162 -msgid "Scan band US HIGH" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:164 -msgid "Scan band US HYPER" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:160 -msgid "Scan band US LOW" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:161 -msgid "Scan band US MID" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:163 -msgid "Scan band US SUPER" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:826 -msgid "" -"Scan your network for wireless Access Points and connect to them using your " -"WLAN USB Stick\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DefaultServicesScanner/plugin.py:137 -msgid "" -"Scans default lamedbs sorted by satellite with a connected dish positioner" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:235 -msgid "Search east" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:234 -msgid "Search west" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:331 -msgid "Secondary DNS" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:51 -msgid "Select Location" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1628 -msgid "Select audio mode" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1604 -msgid "Select audio track" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:219 -msgid "Select channel to record from" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:238 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:262 -msgid "Select image" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:426 -msgid "Select provider to add..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:532 -msgid "Select service to add..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:260 -msgid "Selected source image" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:20 -msgid "Send DiSEqC" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:31 -msgid "Send DiSEqC only on satellite change" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:28 -msgid "Seperate titles with a main menu" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:239 -msgid "Sequence repeat" -msgstr "" - -#: ../lib/python/Components/Language.py:37 -msgid "Serbian" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1748 -msgid "Service has been added to the favourites." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1754 -msgid "Service has been added to the selected bouquet." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2176 -msgid "" -"Service invalid!\n" -"(Timeout reading PMT)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2175 -msgid "" -"Service not found!\n" -"(SID not found in PAT)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2181 -msgid "" -"Service unavailable!\n" -"Check tuner configuration!" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:86 ../data/ -msgid "Serviceinfo" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:910 -msgid "Services" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:30 -msgid "Set Voltage and 22KHz" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:58 -msgid "Set as default Interface" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:81 -msgid "Set interface as default Interface" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:193 -msgid "Set limits" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:86 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:46 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:63 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:38 -msgid "Settings" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:62 ../data/ -msgid "Setup" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1274 -#: ../lib/python/Screens/NetworkSetup.py:1284 -#: ../lib/python/Screens/NetworkSetup.py:1290 -#: ../lib/python/Screens/NetworkSetup.py:1296 -#: ../lib/python/Screens/NetworkSetup.py:1302 -msgid "Show Info" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:872 -msgid "Show WLAN Status" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:212 -msgid "Show services beginning with" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:46 -msgid "Show the radio player..." -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:47 -msgid "Show the tv player..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:828 -msgid "Shows the state of your wireless LAN connection.\n" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:41 -msgid "Shutdown Dreambox after" -msgstr "" - -#: ../lib/python/Screens/EventView.py:191 -msgid "Similar" -msgstr "" - -#: ../lib/python/Screens/EventView.py:185 -msgid "Similar broadcasts:" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:44 -msgid "Simple" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDProject.py:29 -msgid "Simple titleset (compatibility for legacy players)" -msgstr "" - -#: ../lib/python/Components/NimManager.py:908 -msgid "Single" -msgstr "" - -#: ../lib/python/Screens/EventView.py:211 -msgid "Single EPG" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:514 -msgid "Single satellite" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:514 -#: ../lib/python/Screens/ScanSetup.py:515 -#: ../lib/python/Screens/ScanSetup.py:516 -msgid "Single transponder" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:99 -msgid "Singlestep (GOP)" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SkinSelector/plugin.py:134 -msgid "Skin..." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1282 ../data/ -msgid "Sleep Timer" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:78 -#: ../lib/python/Screens/SleepTimerEdit.py:80 -msgid "Sleep timer action:" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:170 -msgid "Slideshow Interval (sec.)" -msgstr "" - -#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:304 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:57 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:59 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:61 -#, python-format -msgid "Slot %d" -msgstr "" - -#: ../lib/python/Components/Language.py:38 -msgid "Slovakian" -msgstr "" - -#: ../lib/python/Components/Language.py:39 -msgid "Slovenian" -msgstr "" - -#: ../lib/python/Components/NimManager.py:918 -msgid "Slow" -msgstr "" - -#: ../lib/python/Screens/PluginBrowser.py:39 -msgid "Some plugins are not available:\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:143 -msgid "" -"Sorry your Backup destination does not exist\n" -"\n" -"Please choose an other one." -msgstr "" - -#. TRANSLATORS: This must fit into the header button in the EPG-List -#: ../lib/python/Screens/EpgSelection.py:212 -msgid "Sort A-Z" -msgstr "" - -#. TRANSLATORS: This must fit into the header button in the EPG-List -#: ../lib/python/Screens/EpgSelection.py:209 -msgid "Sort Time" -msgstr "" - -#: ../lib/python/Components/NimManager.py:917 -msgid "South" -msgstr "" - -#: ../lib/python/Components/Language.py:40 -msgid "Spanish" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:80 ../data/ -msgid "Standby" -msgstr "" - -#: ../mytest.py:363 ../data/ -msgid "Standby / Restart" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:37 -msgid "Start from the beginning" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1533 -msgid "Start recording?" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1311 -msgid "Start test" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:168 -msgid "StartTime" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:146 -msgid "Starting on" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:240 -msgid "Step east" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:239 -msgid "Step west" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1596 -#: ../lib/python/Screens/InfoBarGenerics.py:1601 -msgid "Stereo" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:228 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:229 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:230 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:231 -msgid "Stop" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1099 -msgid "Stop Timeshift?" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:100 -msgid "Stop current event and disable coming events" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:99 -msgid "Stop current event but not coming events" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:172 -msgid "Stop playing this movie?" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1314 -msgid "Stop test" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:586 -msgid "Stop testing plane after # failed transponders" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:590 -msgid "Stop testing plane after # successful transponders" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:249 -msgid "Store position" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:226 -msgid "Stored position" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1646 -msgid "Subservice list..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:173 ../data/ -msgid "Subtitle selection" -msgstr "" - -#: ../lib/python/Screens/Subtitles.py:61 ../lib/python/Screens/Subtitles.py:64 -#: ../lib/python/Screens/Subtitles.py:66 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:148 ../data/ -msgid "Subtitles" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Sun" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:162 -msgid "Sunday" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1309 -msgid "Swap Services" -msgstr "" - -#: ../lib/python/Components/Language.py:41 -msgid "Swedish" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1651 -msgid "Switch to next subservice" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1652 -msgid "Switch to previous subservice" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:353 -#: ../lib/python/Screens/ScanSetup.py:383 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:444 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:82 -msgid "Symbol Rate" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:141 -msgid "Symbolrate" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:345 -#: ../lib/python/Screens/ServiceInfo.py:137 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:437 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:75 ../data/ -msgid "System" -msgstr "" - -#. TRANSLATORS: Add here whatever should be shown in the "translator" about screen, up to 6 lines (use \n for newline) -#: ../lib/python/Screens/About.py:58 -msgid "TRANSLATOR_INFO" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:287 -msgid "TS file is too large for ISO9660 level 1!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:188 -msgid "Table of content for collection" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:316 -msgid "Tag 1" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:321 -msgid "Tag 2" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:328 -#: ../lib/python/Screens/TimerEntry.py:179 -msgid "Tags" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:918 -#: ../lib/python/Components/ServiceScan.py:81 -#: ../lib/python/Tools/Transponder.py:70 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:476 -msgid "Terrestrial" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:182 -msgid "Terrestrial provider" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:656 -msgid "Test DiSEqC settings" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:582 -msgid "Test Type" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:822 -msgid "Test the network configuration of your Dreambox.\n" -msgstr "" - -#: ../lib/python/Plugins/DemoPlugins/TestPlugin/plugin.py:47 -msgid "Test-Messagebox?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:289 -msgid "" -"The DVD standard doesn't support H.264 (HDTV) video streams. Do you want to " -"create a Dreambox format data DVD (which will not play in stand-alone DVD " -"players) instead?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:653 -msgid "" -"The USB stick is now bootable. Do you want to download the latest image from " -"the feed server and save it on the stick?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:566 -#, python-format -msgid "" -"The following device was found:\n" -"\n" -"%s\n" -"\n" -"Do you want to write the USB flasher to this stick?" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:264 -msgid "The installation of the default services lists is finished." -msgstr "" - -#: ../lib/python/Screens/DefaultWizard.py:40 -msgid "" -"The installation of the default settings is finished. You can now continue " -"configuring your Dreambox by pressing the OK button on the remote control." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:197 -msgid "" -"The md5sum validation failed, the file may be corrupted! Are you sure that " -"you want to burn this image to flash memory? You are doing this at your own " -"risk!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:468 -msgid "" -"The md5sum validation failed, the file may be downloaded incompletely or be " -"corrupted!" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:258 -#, python-format -msgid "The path %s already exists." -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:274 -msgid "The pin code has been changed successfully." -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:191 -#: ../lib/python/Screens/ParentalControlSetup.py:36 -#: ../lib/python/Components/ParentalControl.py:141 -msgid "The pin code you entered is wrong." -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:276 -msgid "The pin codes you entered are different." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:527 -#, python-format -msgid "The results have been written to %s." -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:98 -msgid "The sleep timer has been activated." -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:101 -msgid "The sleep timer has been disabled." -msgstr "" - -#: ../RecordTimer.py:483 -msgid "The timer file (timers.xml) is corrupt and could not be loaded." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:744 -#: ../lib/python/Screens/NetworkSetup.py:764 -#: ../lib/python/Screens/NetworkSetup.py:778 -#: ../lib/python/Screens/NetworkSetup.py:897 -msgid "" -"The wireless LAN plugin is not installed!\n" -"Please install it." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:676 ../data/ -msgid "" -"The wizard can backup your current settings. Do you want to do a backup now?" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:359 -msgid "" -"There might not be enough Space on the selected Partition.\n" -"Do you really want to continue?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:188 -#, python-format -msgid "This .NFI file does not contain a valid %s image!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:186 -msgid "" -"This .NFI file does not have a md5sum signature and is not guaranteed to " -"work. Do you really want to burn this image to flash memory?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:195 -msgid "" -"This .NFI file has a valid md5 signature. Continue programming this image to " -"flash memory?" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:166 -msgid "" -"This DVD RW medium is already formatted - reformatting will erase all " -"content on the disc." -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:276 -#, python-format -msgid "This Dreambox can't decode %s video streams!" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1238 -msgid "" -"This test checks for configured Nameservers.\n" -"If you get a \"unconfirmed\" message:\n" -"- please check your DHCP, cabling and Adapter setup\n" -"- if you configured your Nameservers manually please verify your entries in " -"the \"Nameserver\" Configuration" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1223 -msgid "" -"This test checks whether a network cable is connected to your LAN-Adapter.\n" -"If you get a \"disconnected\" message:\n" -"- verify that a network cable is attached\n" -"- verify that the cable is not broken" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1233 -msgid "" -"This test checks whether a valid IP Address is found for your LAN Adapter.\n" -"If you get a \"unconfirmed\" message:\n" -"- no valid IP Address was found\n" -"- please check your DHCP, cabling and adapter setup" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1228 -msgid "" -"This test checks whether your LAN Adapter is set up for automatic IP Address " -"configuration with DHCP.\n" -"If you get a \"disabled\" message:\n" -" - then your LAN Adapter is configured for manual IP Setup\n" -"- verify thay you have entered correct IP informations in the AdapterSetup " -"dialog.\n" -"If you get an \"enabeld\" message:\n" -"-verify that you have a configured and working DHCP Server in your network." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1218 -msgid "This test detects your configured LAN-Adapter." -msgstr "" - -#: ../lib/python/Components/NimManager.py:934 -msgid "Three" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:283 -msgid "Threshold" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Thu" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:59 -msgid "Thumbnails" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:159 -msgid "Thursday" -msgstr "" - -#: ../lib/python/Screens/TimeDateInput.py:47 -msgid "Time" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:136 -msgid "Timer Type" -msgstr "" - -#: ../RecordTimer.py:505 -msgid "" -"Timer overlap in timers.xml detected!\n" -"Please recheck it!" -msgstr "" - -#: ../lib/python/Screens/SleepTimerEdit.py:27 -#: ../lib/python/Screens/SleepTimerEdit.py:29 -msgid "Timer status:" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1069 -msgid "Timeshift not possible!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDTitle.py:14 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:147 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:73 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:90 -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:410 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:127 -msgid "Title" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:44 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:242 -msgid "Title properties" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:160 -msgid "Titleset mode" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:698 -msgid "" -"To update your Dreambox firmware, please follow these steps:\n" -"1) Turn off your box with the rear power switch and plug in the bootable USB " -"stick.\n" -"2) Turn mains back on and hold the DOWN button on the front panel pressed " -"for 10 seconds.\n" -"3) Wait for bootup and follow instructions of the wizard." -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:335 -#: ../lib/python/Tools/FuzzyDate.py:10 -msgid "Today" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:220 -msgid "Tone mode" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:236 -msgid "Toneburst" -msgstr "" - -#: ../lib/python/Components/NimManager.py:908 -msgid "Toneburst A/B" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:72 -msgid "Track" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:151 -msgid "Transmission Mode" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:394 -msgid "Transmission mode" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:88 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:455 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:93 -msgid "Transponder" -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:136 -msgid "Transponder Type" -msgstr "" - -#: ../lib/python/Screens/InputBox.py:175 -msgid "Tries left:" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:156 -msgid "Try to find used Transponders in cable network.. please wait..." -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:243 -msgid "Try to find used transponders in cable network.. please wait..." -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Tue" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:157 -msgid "Tuesday" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:190 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:222 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:428 -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:65 -msgid "Tune" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2173 -msgid "Tune failed!" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:110 -#: ../lib/python/Screens/Satconfig.py:119 -#: ../lib/python/Screens/Satconfig.py:419 -#: ../lib/python/Screens/ScanSetup.py:320 -#: ../lib/python/Components/ServiceScan.py:137 -msgid "Tuner" -msgstr "" - -#: ../lib/python/Components/NimManager.py:453 -msgid "Tuner " -msgstr "" - -#: ../lib/python/Screens/ServiceInfo.py:89 -msgid "Tuner status" -msgstr "" - -#: ../lib/python/Components/Language.py:42 -msgid "Turkish" -msgstr "" - -#: ../lib/python/Components/NimManager.py:934 -msgid "Two" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:331 -#: ../lib/python/Screens/ScanSetup.py:334 -#: ../lib/python/Screens/ScanSetup.py:337 -msgid "Type of scan" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:438 -#: ../lib/python/Components/NimManager.py:912 -msgid "USALS" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:370 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:108 -msgid "USB Stick" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:239 -msgid "USB stick wizard" -msgstr "" - -#: ../lib/python/Components/Language.py:43 -msgid "Ukrainian" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:75 -msgid "" -"Unable to complete filesystem check.\n" -"Error: " -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:73 -msgid "" -"Unable to initialize harddisk.\n" -"Error: " -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:254 -msgid "Uncommitted DiSEqC command" -msgstr "" - -#: ../lib/python/Components/NimManager.py:896 -msgid "Universal LNB" -msgstr "" - -#: ../lib/python/Components/Harddisk.py:182 -msgid "Unmount failed" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:35 -msgid "Update" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:360 -msgid "Updates your receiver's software" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:46 -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:145 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:231 -msgid "Updating finished. Here is the result:" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:52 -#: ../lib/python/Plugins/SystemPlugins/OldSoftwareUpdate/plugin.py:151 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:237 -msgid "Updating... Please wait... This can take some minutes..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:69 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:347 -msgid "Upgrade finished. Do you want to reboot your Dreambox?" -msgstr "" - -#: ../lib/python/Screens/Ipkg.py:87 -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:300 -msgid "Upgrading" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:261 -msgid "Upgrading Dreambox... Please wait" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:31 -msgid "Use" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:473 ../data/ -msgid "Use DHCP" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:469 -msgid "Use Interface" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:40 -#: ../lib/python/Screens/Satconfig.py:263 -msgid "Use Power Measurement" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:478 -msgid "Use a gateway" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:832 -msgid "Use the Networkwizard to configure your Network\n" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:223 -msgid "Use usals for this sat" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:147 -msgid "Used service scan type" -msgstr "" - -#: ../lib/python/Components/NimManager.py:898 -msgid "User defined" -msgstr "" - -#: ../lib/python/Plugins/Extensions/Modem/plugin.py:112 -msgid "Username" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:162 -msgid "VMGM (intro trailer)" -msgstr "" - -#: ../lib/python/Tools/Transponder.py:32 -msgid "Vertical" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/plugin.py:33 -#: ../lib/python/Plugins/SystemPlugins/VideoTune/plugin.py:37 -msgid "Video Fine-Tuning" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/plugin.py:38 -msgid "Video Fine-Tuning Wizard" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:56 -msgid "Video Output" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:220 -msgid "Video Setup" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:223 -msgid "Video Wizard" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:1378 -msgid "View Rass interactive..." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:2086 -msgid "View teletext..." -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:219 -msgid "Voltage mode" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:922 -#: ../lib/python/Screens/Satconfig.py:323 -#: ../lib/python/Components/ServiceScan.py:49 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:480 -msgid "W" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:408 -msgid "WEP" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:409 -msgid "WPA" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:411 -msgid "WPA or WPA2" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:410 -msgid "WPA2" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/plugin.py:90 ../data/ -msgid "WSS on 4:3" -msgstr "" - -#: ../lib/python/Components/Task.py:41 -msgid "Waiting" -msgstr "" - -#: ../lib/python/Screens/EpgSelection.py:325 -#: ../lib/python/Components/EpgList.py:38 -#: ../lib/python/Components/TimerList.py:24 -#: ../lib/python/Tools/FuzzyDate.py:13 -msgid "Wed" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:117 -#: ../lib/python/Screens/TimerEntry.py:158 -msgid "Wednesday" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:153 -msgid "Weekday" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:229 -msgid "" -"Welcome to the Cutlist editor.\n" -"\n" -"Seek to the start of the stuff you want to cut away. Press OK, select 'start " -"cut'.\n" -"\n" -"Then seek to the end, press OK, select 'end cut'. That's it." -msgstr "" - -#: ../lib/python/Components/NimManager.py:916 -msgid "West" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:121 -msgid "What to do with submitted crashlogs?" -msgstr "" - -#: ../lib/python/Screens/FactoryReset.py:5 -msgid "" -"When you do a factory reset, you will lose ALL your configuration data\n" -"(including bouquets, services, satellite data ...)\n" -"After completion of factory reset, your receiver will restart " -"automatically!\n" -"\n" -"Really do a factory reset?" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:516 -msgid "Where to save temporary timeshift recordings?" -msgstr "" - -#: ../lib/python/Components/Network.py:314 -msgid "Wireless" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1278 -msgid "Wireless Network" -msgstr "" - -#: ../RecordTimer.py:358 -msgid "Write error while recording. Disk full?\n" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:284 -msgid "Write failed!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:241 -msgid "Writing NFI image file to flash completed" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:73 -msgid "YPbPr" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:131 -msgid "Year" -msgstr "" - -#: ../lib/python/Screens/Ci.py:25 ../lib/python/Screens/Ci.py:27 -#: ../lib/python/Screens/InfoBar.py:162 -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:279 -#: ../data/ ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Yes" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:166 -msgid "Yes, and delete this movie" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:280 -msgid "Yes, and don't ask again" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:164 -msgid "Yes, returning to movie list" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:202 -#: ../lib/python/Screens/MovieSelection.py:128 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:700 -msgid "You cannot delete this!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:483 -msgid "" -"You have chosen to create a new .NFI flasher bootable USB stick. This will " -"repartition the USB stick and therefore all data on it will be erased." -msgstr "" - -#: ../lib/python/Screens/InputBox.py:104 -#, python-format -msgid "You have to wait %s!" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:700 -msgid "Your Dreambox will restart after pressing OK on your remote control." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:263 -msgid "" -"Your collection exceeds the size of a single layer medium, you will need a " -"blank dual layer DVD!" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:336 -msgid "" -"Your dreambox isn't connected to the internet properly. Please check it and " -"try again." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:123 -msgid "Your email address:" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:34 -msgid "" -"Your frontprocessor firmware must be upgraded.\n" -"Press OK to start upgrade." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CrashlogAutoSubmit/plugin.py:124 -msgid "Your name (optional):" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:631 -#: ../lib/python/Screens/NetworkSetup.py:633 -msgid "Your network configuration has been activated." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:628 -msgid "" -"Your network configuration has been activated.\n" -"A second configured interface has been found.\n" -"\n" -"Do you want to disable the second network interface?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:158 -msgid "Zap back to service before positioner setup?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Satfinder/plugin.py:217 -msgid "Zap back to service before satfinder?" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:521 -msgid "[alternative edit]" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:525 -msgid "[bouquet edit]" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:527 -msgid "[favourite edit]" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:619 -msgid "[move mode]" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:644 -msgid "a gui to assign services/providers to common interface modules" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:640 -msgid "a gui to assign services/providers/caids to common interface modules" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:157 -msgid "abort alternatives edit" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:151 -msgid "abort bouquet edit" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:154 -msgid "abort favourites edit" -msgstr "" - -#: ../lib/python/Components/TimerList.py:49 -msgid "about to start" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:214 -msgid "activate current configuration" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:131 -msgid "add Provider" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:130 -msgid "add Service" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:220 -msgid "add a nameserver entry" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:144 -msgid "add alternatives" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:403 -msgid "add bookmark" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:126 -msgid "add bouquet" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:483 -msgid "add directory to playlist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:154 -msgid "add file to playlist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:485 -msgid "add files to playlist" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:134 -msgid "add marker" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1524 -#: ../lib/python/Screens/InfoBarGenerics.py:1535 -msgid "add recording (enter recording duration)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1525 -#: ../lib/python/Screens/InfoBarGenerics.py:1536 -msgid "add recording (enter recording endtime)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1526 -#: ../lib/python/Screens/InfoBarGenerics.py:1537 -msgid "add recording (indefinitely)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1523 -#: ../lib/python/Screens/InfoBarGenerics.py:1534 -msgid "add recording (stop after current event)" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:110 -msgid "add service to bouquet" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:112 -msgid "add service to favourites" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:106 -msgid "add to parental protection" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:60 -#: ../lib/python/Screens/Satconfig.py:444 -#: ../lib/python/Components/NimManager.py:1047 -msgid "advanced" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:75 -msgid "alphabetic sort" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:202 -msgid "" -"are you sure you want to restore\n" -"following backup:\n" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:133 -msgid "assigned CAIds" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:134 -msgid "assigned Services/Provider" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:80 -#, python-format -msgid "audio track (%s) format" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:81 -#, python-format -msgid "audio track (%s) language" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -msgid "audio tracks" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:96 -msgid "auto" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:159 -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:53 -msgid "back" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:149 -msgid "background image" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:176 -msgid "backgroundcolor" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:24 -msgid "better" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:29 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:30 -msgid "black" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:16 -msgid "blacklist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:29 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:30 -msgid "blue" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:78 -#, python-format -msgid "burn audio track (%s)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1527 -msgid "change recording (duration)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1528 -msgid "change recording (endtime)" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py:94 -msgid "chapters" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:257 -msgid "choose destination directory" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:555 -msgid "circular left" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:556 -msgid "circular right" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:171 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:491 -msgid "clear playlist" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:12 -msgid "complex" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1352 -#: ../lib/python/Screens/NetworkSetup.py:1366 -msgid "confirmed" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1341 -#: ../lib/python/Screens/NetworkSetup.py:1398 -msgid "connected" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:650 -msgid "continue" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:118 -msgid "copy to bouquets" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:405 -msgid "create directory" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:103 -msgid "daily" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -msgid "day" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:129 -msgid "delete" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:66 -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:68 -msgid "delete cut" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:488 -msgid "delete file" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:170 -msgid "delete playlist entry" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:499 -msgid "delete saved playlist" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:67 -msgid "delete..." -msgstr "" - -#: ../lib/python/Components/config.py:322 -msgid "disable" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:146 -msgid "disable move mode" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1164 -#: ../lib/python/Components/NimManager.py:1113 -#: ../lib/python/Components/TimerList.py:63 -msgid "disabled" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1326 -#: ../lib/python/Screens/NetworkSetup.py:1345 -#: ../lib/python/Screens/NetworkSetup.py:1393 -msgid "disconnected" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:27 -msgid "do not change" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1530 -#: ../lib/python/Screens/TaskView.py:47 ../lib/python/Screens/TimerEntry.py:96 -msgid "do nothing" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1538 -msgid "don't record" -msgstr "" - -#: ../lib/python/Components/TimerList.py:56 -#: ../lib/python/Components/TimerList.py:60 -msgid "done!" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:140 -msgid "edit alternatives" -msgstr "" - -#: ../lib/python/Components/NimManager.py:474 -msgid "empty" -msgstr "" - -#: ../lib/python/Components/config.py:322 -msgid "enable" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:136 -msgid "enable bouquet edit" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:138 -msgid "enable favourite edit" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:132 -msgid "enable move mode" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1160 -#: ../lib/python/Screens/Satconfig.py:449 -#: ../lib/python/Components/NimManager.py:1061 -#: ../lib/python/Components/NimManager.py:1101 -msgid "enabled" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:156 -msgid "end alternatives edit" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:150 -msgid "end bouquet edit" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:61 -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:63 -msgid "end cut here" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:153 -msgid "end favourites edit" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:107 -msgid "enigma2 and network" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:65 -#: ../lib/python/Screens/Satconfig.py:417 -#: ../lib/python/Components/NimManager.py:1049 -msgid "equal to" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:254 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:257 -msgid "exceeds dual layer medium!" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:325 -msgid "exit DVD player or return to file browser" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:155 -msgid "exit mediaplayer" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:232 -msgid "exit movielist" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:213 -#: ../lib/python/Screens/NetworkSetup.py:219 -msgid "exit nameserver configuration" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:309 -msgid "exit network adapter configuration" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:303 -msgid "exit network adapter setup menu" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:70 -#: ../lib/python/Screens/NetworkSetup.py:76 -msgid "exit network interface list" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:713 -#: ../lib/python/Screens/NetworkSetup.py:719 -msgid "exit networkadapter setup menu" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:604 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:628 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:644 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:656 -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:246 -msgid "failed" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:595 -msgid "fileformats (BMP, PNG, JPG, GIF)" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:206 -msgid "filename" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/VideoTune/plugin.py:37 -msgid "fine-tune your display" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:321 -msgid "forward to the next chapter" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:254 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:260 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:266 -msgid "free" -msgstr "" - -#: ../lib/python/Components/DiskInfo.py:30 -msgid "free diskspace" -msgstr "" - -#: ../lib/python/Screens/TaskView.py:47 ../lib/python/Screens/TimerEntry.py:96 -msgid "go to deep standby" -msgstr "" - -#: ../lib/python/Screens/TaskView.py:47 ../lib/python/Screens/TimerEntry.py:96 -msgid "go to standby" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:29 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:30 -msgid "green" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:61 -msgid "hear radio..." -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:442 -msgid "hidden network" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:83 -msgid "hide extended description" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:495 -msgid "hide player" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:553 -msgid "horizontal" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:24 -msgid "hour" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:24 -#: ../lib/python/Components/UsageConfig.py:25 -msgid "hours" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:50 -msgid "immediate shutdown" -msgstr "" - -#: ../lib/python/Plugins/Extensions/FritzCall/plugin.py:77 -#, python-format -msgid "" -"incoming call!\n" -"%s calls on %s!" -msgstr "" - -#: ../lib/python/Screens/Ci.py:327 ../lib/python/Screens/Ci.py:351 -msgid "init module" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:59 -msgid "init modules" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:76 -msgid "insert mark here" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:324 -msgid "jump back to the previous title" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:323 -msgid "jump forward to the next title" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:166 -msgid "jump to listbegin" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:167 -msgid "jump to listend" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1837 -msgid "jump to next marked position" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1836 -msgid "jump to previous marked position" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:139 -msgid "leave movie player..." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1627 -msgid "left" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -msgid "length" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:79 -msgid "list style compact" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:78 -msgid "list style compact with description" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:77 -msgid "list style default" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:80 -msgid "list style single line" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:496 -msgid "load playlist" -msgstr "" - -#: ../lib/python/Components/TunerInfo.py:77 -msgid "locked" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:69 -#: ../lib/python/Screens/Satconfig.py:416 -#: ../lib/python/Components/NimManager.py:1052 -msgid "loopthrough to" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:440 -#: ../lib/python/Components/NimManager.py:912 -msgid "manual" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:147 -#: ../lib/python/Screens/MovieSelection.py:218 -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:207 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:52 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:165 -msgid "menu" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:834 -msgid "menulist" -msgstr "" - -#: ../lib/python/Components/TimerList.py:38 -#: ../lib/python/Components/TimerList.py:43 -msgid "mins" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:22 -msgid "minute" -msgstr "" - -#: ../lib/python/Screens/InputBox.py:104 -#: ../lib/python/Screens/SleepTimerEdit.py:42 -#: ../lib/python/Components/UsageConfig.py:22 -#: ../lib/python/Components/UsageConfig.py:23 -#: ../lib/python/Components/UsageConfig.py:24 -msgid "minutes" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:110 -msgid "month" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:31 -msgid "move PiP to main picture" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:708 -msgid "move down to last entry" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:706 -msgid "move down to next entry" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:707 -msgid "move up to first entry" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:705 -msgid "move up to previous entry" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1004 -#: ../lib/python/Screens/InfoBarGenerics.py:1005 -#: ../lib/python/Screens/InfoBarGenerics.py:1006 -msgid "movie list" -msgstr "" - -#: ../lib/python/Components/AVSwitch.py:110 -msgid "multinorm" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:13 -msgid "never" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:265 -msgid "next channel" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:267 -msgid "next channel in history" -msgstr "" - -#: ../lib/python/Screens/MessageBox.py:42 -#: ../lib/python/Screens/MessageBox.py:44 -#: ../lib/python/Screens/ScanSetup.py:517 -#: ../lib/python/Screens/ScanSetup.py:895 -#: ../lib/python/Screens/SleepTimerEdit.py:85 -#: ../lib/python/Components/config.py:314 -msgid "no" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:158 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:231 -msgid "no CAId selected" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:64 -msgid "no CI slots found" -msgstr "" - -#: ../lib/python/Screens/HarddiskSetup.py:100 -msgid "no HDD found" -msgstr "" - -#: ../lib/python/Screens/Ci.py:325 ../lib/python/Screens/Ci.py:349 -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:57 -msgid "no module found" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:21 -msgid "no standby" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:14 -msgid "no timeout" -msgstr "" - -#: ../lib/python/Screens/About.py:40 -msgid "none" -msgstr "" - -#: ../lib/python/Components/TunerInfo.py:79 -msgid "not locked" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:58 -#: ../lib/python/Screens/Satconfig.py:421 -#: ../lib/python/Screens/Satconfig.py:447 -#: ../lib/python/Components/NimManager.py:914 -#: ../lib/python/Components/NimManager.py:1046 -#: ../lib/python/Components/NimManager.py:1062 -#: ../lib/python/Components/NimManager.py:1102 -msgid "nothing connected" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:128 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:260 -msgid "of a DUAL layer medium used." -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:131 -#: ../lib/python/Plugins/Extensions/DVDBurn/TitleList.py:266 -msgid "of a SINGLE layer medium used." -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:548 -#: ../lib/python/Screens/ScanSetup.py:583 -#: ../lib/python/Screens/ScanSetup.py:590 -#: ../lib/python/Screens/ScanSetup.py:613 -#: ../lib/python/Components/UsageConfig.py:27 -#: ../lib/python/Components/config.py:318 -msgid "off" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:549 -#: ../lib/python/Screens/ScanSetup.py:584 -#: ../lib/python/Screens/ScanSetup.py:591 -#: ../lib/python/Screens/ScanSetup.py:614 -#: ../lib/python/Components/UsageConfig.py:27 -#: ../lib/python/Components/config.py:318 -msgid "on" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/DVDToolbox.py:134 -msgid "on READ ONLY medium." -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:97 -msgid "once" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:310 -msgid "open nameserver configuration" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:268 -msgid "open servicelist" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:263 -msgid "open servicelist(down)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:262 -msgid "open servicelist(up)" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:315 -msgid "open virtual keyboard input help" -msgstr "" - -#: ../lib/python/Components/ServiceScan.py:137 -msgid "pass" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:649 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:161 -msgid "pause" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:160 -msgid "play entry" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:164 -msgid "play from next mark or playlist entry" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:163 -msgid "play from previous mark or playlist entry" -msgstr "" - -#: ../lib/python/Screens/Ci.py:93 -msgid "please press OK when ready" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/Process.py:451 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:440 -msgid "please wait, loading picture..." -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:264 -msgid "previous channel" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:266 -msgid "previous channel in history" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:95 -msgid "record" -msgstr "" - -#: ../lib/python/Components/TimerList.py:54 -msgid "recording..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:29 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:30 -msgid "red" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:221 -msgid "remove a nameserver entry" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:71 -msgid "remove after this position" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:142 -msgid "remove all alternatives" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:120 -msgid "remove all new found flags" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:70 -msgid "remove before this position" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:409 -msgid "remove bookmark" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:406 -msgid "remove directory" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:122 -#: ../lib/python/Screens/ChannelSelection.py:127 -msgid "remove entry" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:108 -msgid "remove from parental protection" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:124 -msgid "remove new found flag" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:115 -msgid "remove selected satellite" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:78 -msgid "remove this mark" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:89 -msgid "repeat playlist" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:97 -msgid "repeated" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:322 -msgid "rewind to the previous chapter" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1627 -msgid "right" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:91 -msgid "save last directory on exit" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:498 -msgid "save playlist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:90 -msgid "save playlist on exit" -msgstr "" - -#: ../lib/python/Components/ServiceScan.py:96 -#: ../lib/python/Components/ServiceScan.py:98 -msgid "scan done!" -msgstr "" - -#: ../lib/python/Components/ServiceScan.py:33 -#, python-format -msgid "scan in progress - %d%% done!" -msgstr "" - -#: ../lib/python/Screens/ServiceScan.py:48 -msgid "scan state" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:14 -msgid "second" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:67 -#: ../lib/python/Screens/Satconfig.py:418 -#: ../lib/python/Components/NimManager.py:1050 -msgid "second cable of motorized LNB" -msgstr "" - -#: ../lib/python/Screens/InputBox.py:104 -#: ../lib/python/Components/UsageConfig.py:14 -#: ../lib/python/Components/UsageConfig.py:15 -#: ../lib/python/Components/UsageConfig.py:16 -#: ../lib/python/Components/UsageConfig.py:21 -msgid "seconds" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:127 -msgid "select" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/flasher.py:88 -msgid "select .NFI flash file" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:132 -msgid "select CAId" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/CommonInterfaceAssignment/plugin.py:379 -msgid "select CAId's" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py:267 -msgid "select image from server" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:71 -msgid "select interface" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:304 -#: ../lib/python/Screens/NetworkSetup.py:714 -msgid "select menu entry" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:233 -msgid "select movie" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:212 -msgid "select the movie path" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:92 -#: ../lib/python/Screens/ParentalControlSetup.py:119 -msgid "service pin" -msgstr "" - -#: ../lib/python/Screens/ParentalControlSetup.py:94 -#: ../lib/python/Screens/ParentalControlSetup.py:112 -msgid "setup pin" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:319 -msgid "show DVD main menu" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:406 -msgid "show EPG..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:173 -msgid "show Infoline" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:224 -msgid "show all" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:141 -msgid "show alternatives" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:368 -#: ../lib/python/Screens/MovieSelection.py:219 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:178 -msgid "show event details" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:85 -msgid "show extended description" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:225 -msgid "show first selected tag" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:226 -msgid "show second selected tag" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:49 -msgid "show shutdown menu" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:407 -#: ../lib/python/Screens/InfoBarGenerics.py:497 -msgid "show single service EPG..." -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:227 -msgid "show tag menu" -msgstr "" - -#: ../lib/python/Screens/ChannelSelection.py:99 -msgid "show transponder info" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:172 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:494 -msgid "shuffle playlist" -msgstr "" - -#: ../SleepTimer.py:14 -msgid "shutdown" -msgstr "" - -#: ../lib/python/Screens/Satconfig.py:59 -#: ../lib/python/Screens/Satconfig.py:442 -#: ../lib/python/Components/NimManager.py:1047 -#: ../lib/python/Components/ParentalControl.py:12 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:24 -msgid "simple" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:654 -msgid "skip backward" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:655 -msgid "skip backward (enter time)" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:652 -msgid "skip forward" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:653 -msgid "skip forward (enter time)" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:175 -msgid "slide picture in loop" -msgstr "" - -#: ../lib/python/Screens/MovieSelection.py:73 -msgid "sort by date" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:30 -msgid "standard" -msgstr "" - -#: ../SleepTimer.py:14 -msgid "standby" -msgstr "" - -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:56 -#: ../lib/python/Plugins/Extensions/CutListEditor/plugin.py:58 -msgid "start cut here" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/settings.py:93 -msgid "start directory" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1041 -msgid "start timeshift" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1627 -msgid "stereo" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:31 -msgid "stop PiP" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:162 -msgid "stop entry" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1529 -msgid "stop recording" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1042 -msgid "stop timeshift" -msgstr "" - -#: ../lib/python/Components/UsageConfig.py:30 -msgid "swap PiP and main picture" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:141 -#: ../lib/python/Screens/LocationBox.py:402 -msgid "switch to bookmarks" -msgstr "" - -#: ../lib/python/Screens/LocationBox.py:142 -#: ../lib/python/Screens/LocationBox.py:408 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:169 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:490 -msgid "switch to filelist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:168 -#: ../lib/python/Plugins/Extensions/MediaPlayer/plugin.py:486 -msgid "switch to playlist" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:329 -msgid "switch to the next angle" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:327 -msgid "switch to the next audio track" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:328 -msgid "switch to the next subtitle language" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py:145 -msgid "template file" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:177 -msgid "textcolor" -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:191 -#: ../lib/python/Screens/MovieSelection.py:119 -msgid "this recording" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:80 -msgid "this service is protected by a parental control pin" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1838 -msgid "toggle a cut mark at the current position" -msgstr "" - -#: ../lib/python/Plugins/Extensions/DVDPlayer/plugin.py:320 -msgid "toggle time, chapter, audio, subtitle info" -msgstr "" - -#: ../lib/python/Screens/NetworkSetup.py:1356 -#: ../lib/python/Screens/NetworkSetup.py:1370 -msgid "unconfirmed" -msgstr "" - -#: ../lib/python/Screens/EventView.py:122 -msgid "unknown service" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:13 -msgid "until restart" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:103 -msgid "user defined" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:554 -msgid "vertical" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1176 -msgid "view extensions..." -msgstr "" - -#: ../lib/python/Screens/InfoBar.py:60 -msgid "view recordings..." -msgstr "" - -#: ../lib/python/Screens/Ci.py:32 -msgid "wait for ci..." -msgstr "" - -#: ../lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py:21 -#: ../lib/python/Plugins/Extensions/SocketMMI/SocketMMI.py:28 -msgid "wait for mmi..." -msgstr "" - -#: ../lib/python/Components/TimerList.py:47 -msgid "waiting" -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:103 -msgid "weekly" -msgstr "" - -#: ../lib/python/Components/ParentalControl.py:16 -msgid "whitelist" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/DiseqcTester/plugin.py:260 -msgid "working" -msgstr "" - -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:29 -#: ../lib/python/Plugins/Extensions/PicturePlayer/plugin.py:30 -msgid "yellow" -msgstr "" - -#: ../lib/python/Screens/MessageBox.py:42 -#: ../lib/python/Screens/MessageBox.py:44 -#: ../lib/python/Screens/ScanSetup.py:517 -#: ../lib/python/Screens/ScanSetup.py:895 -#: ../lib/python/Screens/SleepTimerEdit.py:83 -#: ../lib/python/Components/config.py:314 -msgid "yes" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:517 -#: ../lib/python/Screens/ScanSetup.py:895 -msgid "yes (keep feeds)" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:332 -msgid "" -"your dreambox might be unusable now. Please consult the manual for further " -"assistance before rebooting your dreambox." -msgstr "" - -#: ../lib/python/Screens/TimerEntry.py:95 -msgid "zap" -msgstr "" - -#: ../lib/python/Components/TimerList.py:52 -msgid "zapped" -msgstr "" - -#: ../data/ -msgid " " -msgstr "" - -#: ../data/ -msgid "#000000" -msgstr "" - -#: ../data/ -msgid "#0064c7" -msgstr "" - -#: ../data/ -msgid "#25062748" -msgstr "" - -#: ../data/ -msgid "#389416" -msgstr "" - -#: ../data/ -msgid "#80000000" -msgstr "" - -#: ../data/ -msgid "#80ffffff" -msgstr "" - -#: ../data/ -msgid "#bab329" -msgstr "" - -#: ../data/ -msgid "#f23d21" -msgstr "" - -#: ../data/ -msgid "#ffffff" -msgstr "" - -#: ../data/ -msgid "#ffffffff" -msgstr "" - -#: ../data/ -msgid "0" -msgstr "" - -#: ../data/ -msgid "1" -msgstr "" - -#: ../data/ -msgid "12V output" -msgstr "" - -#: ../data/ -msgid "2" -msgstr "" - -#: ../data/ -msgid "3" -msgstr "" - -#: ../data/ -msgid "4" -msgstr "" - -#: ../data/ -msgid "5" -msgstr "" - -#: ../data/ -msgid "6" -msgstr "" - -#: ../data/ -msgid "7" -msgstr "" - -#: ../data/ -msgid "8" -msgstr "" - -#: ../data/ -msgid "9" -msgstr "" - -#: ../data/ -msgid "About" -msgstr "" - -#: ../data/ -msgid "Action on long powerbutton press" -msgstr "" - -#: ../data/ -msgid "Activate network settings" -msgstr "" - -#: ../data/ -msgid "" -"After the start wizard is completed, you need to protect single services. " -"Refer to your dreambox's manual on how to do that." -msgstr "" - -#: ../data/ -msgid "Alpha" -msgstr "" - -#: ../data/ -msgid "Alternative radio mode" -msgstr "" - -#: ../data/ -msgid "Alternative services tuner priority" -msgstr "" - -#: ../data/ -msgid "Audio" -msgstr "" - -#: ../data/ -msgid "BER" -msgstr "" - -#: ../data/ -msgid "BER:" -msgstr "" - -#: ../data/ -msgid "Backup is done. Please press OK to see the result." -msgstr "" - -#: ../data/ -msgid "Behavior of 'pause' when paused" -msgstr "" - -#: ../data/ -msgid "Behavior of 0 key in PiP-mode" -msgstr "" - -#: ../data/ -msgid "Behavior when a movie is started" -msgstr "" - -#: ../data/ -msgid "Behavior when a movie is stopped" -msgstr "" - -#: ../data/ -msgid "Behavior when a movie reaches the end" -msgstr "" - -#: ../data/ -msgid "" -"By pressing the OK Button on your remote control, the info bar is being " -"displayed." -msgstr "" - -#: ../data/ -msgid "C" -msgstr "" - -#: ../data/ -msgid "Change bouquets in quickzap" -msgstr "" - -#: ../data/ -msgid "Channel Selection" -msgstr "" - -#: ../data/ -msgid "Channellist menu" -msgstr "" - -#: ../data/ -msgid "Choose Tuner" -msgstr "" - -#: ../data/ -msgid "Choose bouquet" -msgstr "" - -#: ../data/ -msgid "Choose your Skin" -msgstr "" - -#: ../data/ -msgid "Command execution..." -msgstr "" - -#: ../data/ -msgid "Common Interface" -msgstr "" - -#: ../data/ -msgid "Compact flash card" -msgstr "" - -#: ../data/ -msgid "Continue in background" -msgstr "" - -#: ../data/ -msgid "Custom skip time for '1'/'3'-keys" -msgstr "" - -#: ../data/ -msgid "Custom skip time for '4'/'6'-keys" -msgstr "" - -#: ../data/ -msgid "Custom skip time for '7'/'9'-keys" -msgstr "" - -#: ../data/ -msgid "Customize" -msgstr "" - -#: ../data/ -msgid "D" -msgstr "" - -#: ../data/ -msgid "Default services lists" -msgstr "" - -#: ../data/ -msgid "Default settings" -msgstr "" - -#: ../data/ -msgid "Delay" -msgstr "" - -#: ../data/ -msgid "DiSEqC" -msgstr "" - -#: ../data/ -msgid "Dish" -msgstr "" - -#: ../data/ -msgid "Display Setup" -msgstr "" - -#: ../data/ -msgid "Do you want to do a service scan?" -msgstr "" - -#: ../data/ -msgid "Do you want to do another manual service scan?" -msgstr "" - -#: ../data/ -msgid "Do you want to enable the parental control feature on your dreambox?" -msgstr "" - -#: ../data/ -msgid "Do you want to install default sat lists?" -msgstr "" - -#: ../data/ -msgid "Do you want to restore your settings?" -msgstr "" - -#: ../data/ -msgid "Do you want to view a tutorial?" -msgstr "" - -#: ../data/ -msgid "Downloadable plugins" -msgstr "" - -#: ../data/ -msgid "EPG Selection" -msgstr "" - -#: ../data/ -msgid "Electronic Program Guide" -msgstr "" - -#: ../data/ -msgid "Enable multiple bouquets" -msgstr "" - -#: ../data/ -msgid "Enter Fast Forward at speed" -msgstr "" - -#: ../data/ -msgid "Enter Rewind at speed" -msgstr "" - -#: ../data/ -msgid "Eventview" -msgstr "" - -#: ../data/ -msgid "Exit the wizard" -msgstr "" - -#: ../data/ -msgid "Exit wizard" -msgstr "" - -#: ../data/ -msgid "Extensions" -msgstr "" - -#: ../data/ -msgid "Factory reset" -msgstr "" - -#: ../data/ -msgid "Fast Forward speeds" -msgstr "" - -#: ../data/ -msgid "Filesystem Check..." -msgstr "" - -#: ../data/ -msgid "Finetune" -msgstr "" - -#: ../data/ -msgid "Frame repeat count during non-smooth winding" -msgstr "" - -#: ../data/ -msgid "Harddisk setup" -msgstr "" - -#: ../data/ -msgid "Harddisk standby after" -msgstr "" - -#: ../data/ -msgid "Index" -msgstr "" - -#: ../data/ -msgid "InfoBar" -msgstr "" - -#: ../data/ -msgid "Infobar timeout" -msgstr "" - -#: ../data/ -msgid "Information" -msgstr "" - -#: ../data/ -msgid "Initialization..." -msgstr "" - -#: ../data/ -msgid "Installing Software..." -msgstr "" - -#: ../data/ -msgid "Installing default sat lists... Please wait..." -msgstr "" - -#: ../data/ -msgid "Installing defaults... Please wait..." -msgstr "" - -#: ../data/ -msgid "Installing package content... Please wait..." -msgstr "" - -#: ../data/ -msgid "Invert display" -msgstr "" - -#: ../data/ -msgid "Job View" -msgstr "" - -#: ../data/ -msgid "Keyboard" -msgstr "" - -#: ../data/ -msgid "Keyboard Map" -msgstr "" - -#: ../data/ -msgid "Keyboard Setup" -msgstr "" - -#: ../data/ -msgid "Keymap" -msgstr "" - -#: ../data/ -msgid "Language..." -msgstr "" - -#: ../data/ -msgid "Load Length of Movies in Movielist" -msgstr "" - -#: ../data/ -msgid "Lock:" -msgstr "" - -#: ../data/ -msgid "MORE" -msgstr "" - -#: ../data/ -msgid "Main menu" -msgstr "" - -#: ../data/ -msgid "Mainmenu" -msgstr "" - -#: ../data/ -msgid "Manual Scan" -msgstr "" - -#: ../data/ -msgid "Margin after record" -msgstr "" - -#: ../data/ -msgid "Margin before record (minutes)" -msgstr "" - -#: ../data/ -msgid "MediaPlayer" -msgstr "" - -#: ../data/ -msgid "Message" -msgstr "" - -#: ../data/ -msgid "Message..." -msgstr "" - -#: ../data/ -msgid "Modulator" -msgstr "" - -#: ../data/ -msgid "Movielist menu" -msgstr "" - -#: ../data/ -msgid "Mute" -msgstr "" - -#: ../data/ -msgid "NEXT" -msgstr "" - -#: ../data/ -msgid "NOW" -msgstr "" - -#: ../data/ -msgid "Nameserver Setup" -msgstr "" - -#: ../data/ -msgid "Network Configuration..." -msgstr "" - -#: ../data/ -msgid "Network Setup" -msgstr "" - -#: ../data/ -msgid "Network setup" -msgstr "" - -#: ../data/ -msgid "Network test..." -msgstr "" - -#: ../data/ -msgid "Network..." -msgstr "" - -#: ../data/ -msgid "No backup needed" -msgstr "" - -#: ../data/ -msgid "No, do nothing." -msgstr "" - -#: ../data/ -msgid "No, just start my dreambox" -msgstr "" - -#: ../data/ -msgid "No, scan later manually" -msgstr "" - -#: ../data/ -msgid "Now Playing" -msgstr "" - -#: ../data/ -msgid "OK, guide me through the upgrade process" -msgstr "" - -#: ../data/ -msgid "OSD Settings" -msgstr "" - -#: ../data/ -msgid "Parental control services Editor" -msgstr "" - -#: ../data/ -msgid "Parental control setup" -msgstr "" - -#: ../data/ -msgid "PiPSetup" -msgstr "" - -#: ../data/ -msgid "Pin code needed" -msgstr "" - -#: ../data/ -msgid "Please choose the default services lists you want to install." -msgstr "" - -#: ../data/ -msgid "Please set up tuner B" -msgstr "" - -#: ../data/ -msgid "Please set up tuner C" -msgstr "" - -#: ../data/ -msgid "Please set up tuner D" -msgstr "" - -#: ../data/ -msgid "Plugin browser" -msgstr "" - -#: ../data/ -msgid "Plugins" -msgstr "" - -#: ../data/ -msgid "RC Menu" -msgstr "" - -#: ../data/ -msgid "RF output" -msgstr "" - -#: ../data/ -msgid "Radio" -msgstr "" - -#: ../data/ -msgid "Reception Settings" -msgstr "" - -#: ../data/ -msgid "Recordings always have priority" -msgstr "" - -#: ../data/ -msgid "Repeat" -msgstr "" - -#: ../data/ -msgid "Restart" -msgstr "" - -#: ../data/ -msgid "Restart GUI" -msgstr "" - -#: ../data/ -msgid "" -"Restoring the settings is done. Please press OK to activate the restored " -"settings now." -msgstr "" - -#: ../data/ -msgid "Rewind speeds" -msgstr "" - -#: ../data/ -msgid "SNR" -msgstr "" - -#: ../data/ -msgid "SNR:" -msgstr "" - -#: ../data/ -msgid "Sat / Dish Setup" -msgstr "" - -#: ../data/ -msgid "Seek" -msgstr "" - -#: ../data/ -msgid "Select HDD" -msgstr "" - -#: ../data/ -msgid "Select Network Adapter" -msgstr "" - -#: ../data/ -msgid "Select a movie" -msgstr "" - -#: ../data/ -msgid "Service" -msgstr "" - -#: ../data/ -msgid "Service Scan" -msgstr "" - -#: ../data/ -msgid "Service Searching" -msgstr "" - -#: ../data/ -msgid "Service scan" -msgstr "" - -#: ../data/ -msgid "Setup Mode" -msgstr "" - -#: ../data/ -msgid "Show blinking clock in display during recording" -msgstr "" - -#: ../data/ -msgid "Show infobar on channel change" -msgstr "" - -#: ../data/ -msgid "Show infobar on event change" -msgstr "" - -#: ../data/ -msgid "Show infobar on skip forward/backward" -msgstr "" - -#: ../data/ -msgid "Show positioner movement" -msgstr "" - -#: ../data/ -msgid "Slow Motion speeds" -msgstr "" - -#: ../data/ -msgid "Somewhere else" -msgstr "" - -#: ../data/ -msgid "Sound" -msgstr "" - -#: ../data/ -msgid "Soundcarrier" -msgstr "" - -#: ../data/ -msgid "Subservices" -msgstr "" - -#: ../data/ -msgid "TV System" -msgstr "" - -#: ../data/ -msgid "Test mode" -msgstr "" - -#: ../data/ -msgid "" -"Thank you for using the wizard. Your box is now ready to use.\n" -"Please press OK to start using your Dreambox." -msgstr "" - -#: ../data/ -msgid "The backup failed. Please choose a different backup location." -msgstr "" - -#: ../data/ -msgid "The package doesn't contain anything." -msgstr "" - -#: ../data/ -msgid "The wizard is finished now." -msgstr "" - -#: ../data/ -msgid "There are no default services lists in your image." -msgstr "" - -#: ../data/ -msgid "There are no default settings in your image." -msgstr "" - -#: ../data/ -msgid "This is step number 2." -msgstr "" - -#: ../data/ -msgid "This is unsupported at the moment." -msgstr "" - -#: ../data/ -msgid "Time/Date Input" -msgstr "" - -#: ../data/ -msgid "Timer" -msgstr "" - -#: ../data/ -msgid "Timer Edit" -msgstr "" - -#: ../data/ -msgid "Timer Editor" -msgstr "" - -#: ../data/ -msgid "Timer entry" -msgstr "" - -#: ../data/ -msgid "Timer log" -msgstr "" - -#: ../data/ -msgid "Timer sanity error" -msgstr "" - -#: ../data/ -msgid "Timer selection" -msgstr "" - -#: ../data/ -msgid "Timeshift" -msgstr "" - -#: ../data/ -msgid "Timeshift path..." -msgstr "" - -#: ../data/ -msgid "Timezone" -msgstr "" - -#: ../data/ -msgid "Translation" -msgstr "" - -#: ../data/ -msgid "Translation:" -msgstr "" - -#: ../data/ -msgid "Tuner Slot" -msgstr "" - -#: ../data/ -msgid "Tuner configuration" -msgstr "" - -#: ../data/ -msgid "USB" -msgstr "" - -#: ../data/ -msgid "Use non-smooth winding at speeds above" -msgstr "" - -#: ../data/ -msgid "Use power measurement" -msgstr "" - -#: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" - -#: ../data/ -msgid "" -"Use the up/down keys on your remote control to select an option. After that, " -"press OK." -msgstr "" - -#: ../data/ -msgid "Use wizard to set up basic features" -msgstr "" - -#: ../data/ -msgid "VCR scart" -msgstr "" - -#: ../data/ -msgid "Virtual KeyBoard" -msgstr "" - -#: ../data/ -msgid "Volume" -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 " -"current settings and a short explanation of how to upgrade your firmware." -msgstr "" - -#: ../data/ -msgid "Welcome..." -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." -msgstr "" - -#: ../data/ -msgid "What do you want to scan?" -msgstr "" - -#: ../data/ -msgid "Where do you want to backup your settings?" -msgstr "" - -#: ../data/ -msgid "Yes, backup my settings!" -msgstr "" - -#: ../data/ -msgid "Yes, do a manual scan now" -msgstr "" - -#: ../data/ -msgid "Yes, do an automatic scan now" -msgstr "" - -#: ../data/ -msgid "Yes, do another manual scan now" -msgstr "" - -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "" - -#: ../data/ -msgid "Yes, restore the settings now" -msgstr "" - -#: ../data/ -msgid "Yes, view the tutorial" -msgstr "" - -#: ../data/ -msgid "" -"You can choose some default settings now. Please select the settings you " -"want to be installed." -msgstr "" - -#: ../data/ -msgid "You can choose, what you want to install..." -msgstr "" - -#: ../data/ -msgid "You chose not to install any default services lists." -msgstr "" - -#: ../data/ -msgid "" -"You chose not to install any default settings. You can however install the " -"default settings later in the settings menu." -msgstr "" - -#: ../data/ -msgid "" -"You chose not to install anything. Please press OK finish the install wizard." -msgstr "" - -#: ../data/ -msgid "" -"You do not seem to have a harddisk in your Dreambox. So backing up to a " -"harddisk is not an option for you." -msgstr "" - -#: ../data/ -msgid "" -"You have chosen to backup to a compact flash card. The card must be in the " -"slot. We do not verify if it is really used at the moment. So better backup " -"to the harddisk!\n" -"Please press OK to start the backup now." -msgstr "" - -#: ../data/ -msgid "" -"You have chosen to backup to an usb drive. Better backup to the harddisk!\n" -"Please press OK to start the backup now." -msgstr "" - -#: ../data/ -msgid "" -"You have chosen to backup to your harddisk. Please press OK to start the " -"backup now." -msgstr "" - -#: ../data/ -msgid "" -"You need a PC connected to your dreambox. If you need further instructions, " -"please visit the website http://www.dm7025.de.\n" -"Your dreambox will now be halted. After you have performed the update " -"instructions from the website, your new firmware will ask you to restore " -"your settings." -msgstr "" - -#: ../data/ -msgid "" -"You need to set a pin code and hide it from your children.\n" -"\n" -"Do you want to set the pin now?" -msgstr "" - -#: ../data/ -msgid "" -"Your backup succeeded. We will now continue to explain the further upgrade " -"process." -msgstr "" - -#: ../data/ -msgid "Your dreambox is shutting down. Please stand by..." -msgstr "" - -#: ../data/ -msgid "config menu" -msgstr "" - -#: ../data/ -msgid "help..." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "50 Hz" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "If you can see this page, please press OK." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "No 50 Hz, sorry. :(" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "No picture on TV? Press EXIT and retry." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Please follow the instructions on the TV" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Refresh rate selection." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Select refresh rate" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Select video input" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Select video mode" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "" -"The input port should be configured now.\n" -"You can now configure the screen by displaying some test pictures. Do you " -"want to do that now?" -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "" -"Video input selection\n" -"\n" -"Please press OK if you can see this page on your TV (or select a different " -"input port).\n" -"\n" -"The next input port will be automatically probed in 10 seconds." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Video mode selection." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "" -"We will now test if your TV can also display this resolution at 50hz. If " -"your screen goes black, wait 20 seconds and it will switch back to 60hz.\n" -"Please press OK to begin." -msgstr "" - -#: ../lib/python/Plugins/SystemPlugins/Videomode/ -msgid "Your TV works with 50 Hz. Good!" -msgstr "" diff --git a/po/es.po b/po/es.po old mode 100644 new mode 100755 index b32653d4..1957a5f3 --- a/po/es.po +++ b/po/es.po @@ -2038,8 +2038,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Selección de idioma" -msgid "Language..." -msgstr "Idioma..." +msgid "Language" +msgstr "Idioma" msgid "Last config" msgstr "" diff --git a/po/et.po b/po/et.po index 28be364f..c37221b4 100755 --- a/po/et.po +++ b/po/et.po @@ -2036,7 +2036,7 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Keele valik" -msgid "Language..." +msgid "Language" msgstr "Keel" msgid "Last config" diff --git a/po/fi.po b/po/fi.po old mode 100644 new mode 100755 index 806c044e..70216f30 --- a/po/fi.po +++ b/po/fi.po @@ -2047,8 +2047,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Kielivalinta" -msgid "Language..." -msgstr "Kielivalinta..." +msgid "Language" +msgstr "Kielivalinta" msgid "Last config" msgstr "" diff --git a/po/fr.po b/po/fr.po old mode 100644 new mode 100755 index ef0728be..62c8b9cd --- a/po/fr.po +++ b/po/fr.po @@ -2029,8 +2029,8 @@ msgstr "" msgid "Language selection" msgstr "Sélection de la langue" -msgid "Language..." -msgstr "Langage..." +msgid "Language" +msgstr "Langage" msgid "Last config" msgstr "" diff --git a/po/fy.po b/po/fy.po index a9c0eaa1..35dc3ae3 100755 --- a/po/fy.po +++ b/po/fy.po @@ -1992,8 +1992,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Taal Kieze" -msgid "Language..." -msgstr "Taal..." +msgid "Language" +msgstr "Taal" msgid "Last config" msgstr "" diff --git a/po/hr.po b/po/hr.po index d4399697..7843bd1e 100755 --- a/po/hr.po +++ b/po/hr.po @@ -1965,8 +1965,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Odaberite Jezik" -msgid "Language..." -msgstr "Jezik..." +msgid "Language" +msgstr "Jezik" msgid "Last config" msgstr "" @@ -5799,9 +5799,6 @@ msgstr "prebačen" #~ msgid "LCD Setup" #~ msgstr "Postavke Displaya" -#~ msgid "Language" -#~ msgstr "Jezici " - #~ msgid "Loopthrough to Socket A" #~ msgstr "PoveA3i s Utorom A" diff --git a/po/hu.po b/po/hu.po index 3b1df1ed..176e265c 100755 --- a/po/hu.po +++ b/po/hu.po @@ -1997,8 +1997,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Válasszon nyelvet" -msgid "Language..." -msgstr "Nyelvezet..." +msgid "Language" +msgstr "Nyelvezet" msgid "Last config" msgstr "" diff --git a/po/is.po b/po/is.po index b839ad43..8a559166 100755 --- a/po/is.po +++ b/po/is.po @@ -2033,8 +2033,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Val tungumáls" -msgid "Language..." -msgstr "Tungumál..." +msgid "Language" +msgstr "Tungumál" msgid "Last config" msgstr "" @@ -6089,9 +6089,6 @@ msgstr "stokkið" #~ msgid "LCD Setup" #~ msgstr "LCD uppsetning" -#~ msgid "Language" -#~ msgstr "Tungumál" - #~ msgid "Lets you view/edit files in your Dreambox" #~ msgstr "Leyfir skoðun/breytingu á skrám Dreaboxins þíns" diff --git a/po/it.po b/po/it.po old mode 100644 new mode 100755 index e679bbe2..174b2a04 --- a/po/it.po +++ b/po/it.po @@ -2040,8 +2040,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Selezione lingua" -msgid "Language..." -msgstr "Lingua..." +msgid "Language" +msgstr "Lingua" msgid "Last config" msgstr "" diff --git a/po/lt.po b/po/lt.po index 70f6e058..c309a95d 100755 --- a/po/lt.po +++ b/po/lt.po @@ -2038,8 +2038,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Kalbos pasirinkimas" -msgid "Language..." -msgstr "Kalba..." +msgid "Language" +msgstr "Kalba" msgid "Last config" msgstr "" @@ -6378,9 +6378,6 @@ msgstr "įjungta" #~ msgid "Jump to video title 1 (play movie from start)" #~ msgstr "Å uolis į vaizdo pavadinimą 1 (rodo kino filmą nuo pradžios)" -#~ msgid "Language" -#~ msgstr "Kalba" - #~ msgid "Language Selection" #~ msgstr "Kalbos pasirinkimas" diff --git a/po/lv.po b/po/lv.po index d5f36d21..1174c925 100755 --- a/po/lv.po +++ b/po/lv.po @@ -2045,8 +2045,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Valodas izvēle" -msgid "Language..." -msgstr "Valoda..." +msgid "Language" +msgstr "Valoda" msgid "Last config" msgstr "" diff --git a/po/nl.po b/po/nl.po old mode 100644 new mode 100755 index c2476066..2cf73909 --- a/po/nl.po +++ b/po/nl.po @@ -1998,8 +1998,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Taalkeuze" -msgid "Language..." -msgstr "Taal..." +msgid "Language" +msgstr "Taal" msgid "Last config" msgstr "Laatste config" diff --git a/po/no.po b/po/no.po index b2519fab..efaad652 100755 --- a/po/no.po +++ b/po/no.po @@ -1979,8 +1979,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "SprÃ¥kvalg" -msgid "Language..." -msgstr "SprÃ¥k..." +msgid "Language" +msgstr "SprÃ¥k" msgid "Last config" msgstr "" @@ -5878,9 +5878,6 @@ msgstr "zapped" #~ msgid "LCD Setup" #~ msgstr "LCD Instillinger" -#~ msgid "Language" -#~ msgstr "SprÃ¥k" - #~ msgid "Loopthrough to Socket A" #~ msgstr "Koblet med Tuner A" diff --git a/po/pl.po b/po/pl.po old mode 100644 new mode 100755 index 03f28d5b..0b6bf4db --- a/po/pl.po +++ b/po/pl.po @@ -1996,8 +1996,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Wybór języka" -msgid "Language..." -msgstr "Język..." +msgid "Language" +msgstr "Język" msgid "Last config" msgstr "Ostatnie ust" diff --git a/po/pt.po b/po/pt.po index 7ea99665..d2a5603b 100755 --- a/po/pt.po +++ b/po/pt.po @@ -1980,7 +1980,7 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Selecção do Idioma" -msgid "Language..." +msgid "Language" msgstr "Idioma" msgid "Last config" diff --git a/po/ru.po b/po/ru.po old mode 100644 new mode 100755 index 0c32cf46..807193a5 --- a/po/ru.po +++ b/po/ru.po @@ -2021,8 +2021,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Выбор языка" -msgid "Language..." -msgstr "Язык..." +msgid "Language" +msgstr "Язык" msgid "Last config" msgstr "" diff --git a/po/sk.po b/po/sk.po index ddf7ade1..b51fda4b 100755 --- a/po/sk.po +++ b/po/sk.po @@ -2045,8 +2045,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Voľba jazyka" -msgid "Language..." -msgstr "Jazyk..." +msgid "Language" +msgstr "Jazyk" msgid "Last config" msgstr "Posledný config" diff --git a/po/sl.po b/po/sl.po index 0add9036..79d1525b 100755 --- a/po/sl.po +++ b/po/sl.po @@ -1993,8 +1993,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Izberite jezik" -msgid "Language..." -msgstr "Jezik..." +msgid "Language" +msgstr "Jezik" msgid "Last config" msgstr "" @@ -5974,9 +5974,6 @@ msgstr "prenesen" #~ msgid "LCD Setup" #~ msgstr "Postavke Displaya" -#~ msgid "Language" -#~ msgstr "Jezici " - #~ msgid "Loopthrough to Socket A" #~ msgstr "PoveA3i s Utorom A" diff --git a/po/sr.po b/po/sr.po index 6e46eb88..17c0420a 100755 --- a/po/sr.po +++ b/po/sr.po @@ -1995,8 +1995,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Izbor jezika" -msgid "Language..." -msgstr "Jezik..." +msgid "Language" +msgstr "Jezik" msgid "Last config" msgstr "Zadnji konfig" @@ -5825,9 +5825,6 @@ msgstr "prebačen" #~ msgid "LCD Setup" #~ msgstr "Postavke Displaya" -#~ msgid "Language" -#~ msgstr "Jezici " - #~ msgid "Lets you view/edit files in your Dreambox" #~ msgstr "Omogućava vam videti/urediti datoteke vaÅ¡eg drimboxa" diff --git a/po/sv.po b/po/sv.po old mode 100644 new mode 100755 index a437a8e0..dd0d152e --- a/po/sv.po +++ b/po/sv.po @@ -2042,8 +2042,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Välj sprÃ¥k" -msgid "Language..." -msgstr "SprÃ¥k..." +msgid "Language" +msgstr "SprÃ¥k" msgid "Last config" msgstr "Senaste konfiguration" diff --git a/po/tr.po b/po/tr.po index 8da2746e..0d6eaffc 100755 --- a/po/tr.po +++ b/po/tr.po @@ -2047,7 +2047,7 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Dil seçimi" -msgid "Language..." +msgid "Language" msgstr "Dil ayarları" msgid "Last config" diff --git a/po/uk.po b/po/uk.po index ed3e635d..c63a6d9b 100755 --- a/po/uk.po +++ b/po/uk.po @@ -2035,8 +2035,8 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Вибір мови" -msgid "Language..." -msgstr "Мова..." +msgid "Language" +msgstr "Мова" msgid "Last config" msgstr "" diff --git a/po/xml2po.py b/po/xml2po.py index c517517b..cfbeaf4b 100755 --- a/po/xml2po.py +++ b/po/xml2po.py @@ -57,7 +57,7 @@ for arg in sys.argv[1:]: if c: for l in c.split('\n'): print "#. ", l - if str(k) != "": + if str(k).strip() != "": print 'msgid "' + str(k) + '"' print 'msgstr ""'