From 681c113336426914342cf68fb03e7cd399c29c9a Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 11 Oct 2006 15:16:56 +0000 Subject: [PATCH] improve parental control retry count --- lib/python/Components/ParentalControl.py | 19 +- lib/python/Components/config.py | 2 +- lib/python/Screens/InputBox.py | 64 ++++-- lib/python/Screens/ParentalControlSetup.py | 10 +- po/Makefile.am | 1 + po/ar.po | 244 ++++++++++---------- po/ca.po | 244 ++++++++++---------- po/da.po | 244 ++++++++++---------- po/de.po | 249 +++++++++++---------- po/en.po | 244 ++++++++++---------- po/enigma2.pot | 244 ++++++++++---------- po/es.po | 244 ++++++++++---------- po/fi.po | 244 ++++++++++---------- po/fr.po | 244 ++++++++++---------- po/is.po | 244 ++++++++++---------- po/it.po | 244 ++++++++++---------- po/nl.po | 244 ++++++++++---------- po/no.po | 244 ++++++++++---------- po/sv.po | 244 ++++++++++---------- po/tr.po | 244 ++++++++++---------- 20 files changed, 2022 insertions(+), 1739 deletions(-) diff --git a/lib/python/Components/ParentalControl.py b/lib/python/Components/ParentalControl.py index ac786fcd..bcd788d7 100644 --- a/lib/python/Components/ParentalControl.py +++ b/lib/python/Components/ParentalControl.py @@ -1,4 +1,4 @@ -from Components.config import config, ConfigSubsection, ConfigSelection, ConfigPIN, ConfigYesNo, ConfigSubList +from Components.config import config, ConfigSubsection, ConfigSelection, ConfigPIN, ConfigYesNo, ConfigSubList, ConfigInteger from Components.Input import Input from Screens.InputBox import InputBox, PinInput from Screens.MessageBox import MessageBox @@ -16,6 +16,14 @@ def InitParentalControl(): config.ParentalControl.setuppinactive = ConfigYesNo(default = False) config.ParentalControl.type = ConfigSelection(default = "blacklist", choices = [("whitelist", _("whitelist")), ("blacklist", _("blacklist"))]) config.ParentalControl.setuppin = ConfigPIN(default = -1) + + config.ParentalControl.retries = ConfigSubsection() + config.ParentalControl.retries.setuppin = ConfigSubsection() + config.ParentalControl.retries.setuppin.tries = ConfigInteger(default = 3) + config.ParentalControl.retries.setuppin.time = ConfigInteger(default = 3) + config.ParentalControl.retries.servicepin = ConfigSubsection() + config.ParentalControl.retries.servicepin.tries = ConfigInteger(default = 3) + config.ParentalControl.retries.servicepin.time = ConfigInteger(default = 3) # config.ParentalControl.configured = configElement("config.ParentalControl.configured", configSelection, 1, (("yes", _("yes")), ("no", _("no")))) #config.ParentalControl.mode = configElement("config.ParentalControl.mode", configSelection, 0, (("simple", _("simple")), ("complex", _("complex")))) #config.ParentalControl.storeservicepin = configElement("config.ParentalControl.storeservicepin", configSelection, 0, (("never", _("never")), ("5_minutes", _("5 minutes")), ("30_minutes", _("30 minutes")), ("60_minutes", _("60 minutes")), ("restart", _("until restart")))) @@ -34,7 +42,6 @@ class ParentalControl: def __init__(self): self.open() self.serviceLevel = {} - self.tries = 3 def addWhitelistService(self, service): self.whitelist.append(service) @@ -70,7 +77,7 @@ class ParentalControl: if self.serviceLevel.has_key(service): levelNeeded = self.serviceLevel[service] pinList = self.getPinList()[:levelNeeded + 1] - Notifications.AddNotificationWithCallback(boundFunction(self.servicePinEntered, service), PinInput, tries = self.tries, pinList = pinList, service = ServiceReference(service).getServiceName(), title = _("this service is protected by a parental control pin"), windowTitle = _("Parental control")) + Notifications.AddNotificationWithCallback(boundFunction(self.servicePinEntered, service), PinInput, triesEntry = config.ParentalControl.retries.servicepin, pinList = pinList, service = ServiceReference(service).getServiceName(), title = _("this service is protected by a parental control pin"), windowTitle = _("Parental control")) return False else: return True @@ -126,13 +133,11 @@ class ParentalControl: # # print "pin entered for service", service, "and pin was", pin #if pin is not None and int(pin) in pinList: - if result[0] is not None and result[0]: + if result is not None and result: print "pin ok, playing service" - self.tries = 3 self.callback(ref = ServiceReference(service).ref) else: - self.tries = result[1] - if result[0] is not None: + if result is not None: Notifications.AddNotification(MessageBox, _("The pin code you entered is wrong."), MessageBox.TYPE_ERROR) print "wrong pin entered" diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index e9c8b1c1..38a23146 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -428,7 +428,7 @@ class ConfigClock(ConfigSequence): ConfigSequence.__init__(self, seperator = ":", limits = [(0,23),(0,59)], default = [t.tm_hour, t.tm_min]) class ConfigInteger(ConfigSequence): - def __init__(self, default, limits): + def __init__(self, default, limits = (0, 10000000000)): ConfigSequence.__init__(self, seperator = ":", limits = [limits], default = default) # you need to override this to do input validation diff --git a/lib/python/Screens/InputBox.py b/lib/python/Screens/InputBox.py index e73215c3..bb8b63d9 100644 --- a/lib/python/Screens/InputBox.py +++ b/lib/python/Screens/InputBox.py @@ -6,6 +6,7 @@ from Components.Label import Label from Components.Input import Input from Components.GUIComponent import * from Tools.BoundFunction import boundFunction +from time import time import os @@ -89,19 +90,28 @@ class InputBox(Screen): self["input"].toggleOverwrite() class PinInput(InputBox): - def __init__(self, session, service = "", tries = 1, pinList = [], *args, **kwargs): + def __init__(self, session, service = "", triesEntry = None, pinList = [], *args, **kwargs): InputBox.__init__(self, session = session, text="9876", maxSize=True, type=Input.PIN, *args, **kwargs) - self.showTries = True - if tries == 1: - self.showTries = False - + self.waitTime = 15 + + self.triesEntry = triesEntry + self.pinList = pinList self["service"] = Label(service) + if self.getTries() == 0: + if (self.triesEntry.time.value + (self.waitTime * 60)) > time(): + remaining = (self.triesEntry.time.value + (self.waitTime * 60)) - time() + remainingMinutes = int(remaining / 60) + remainingSeconds = int(remaining % 60) + self.onFirstExecBegin.append(boundFunction(self.session.openWithCallback, self.closePinCancel, MessageBox, _("You have to wait for") + " " + str(remainingMinutes) + " " + _("minutes and") + " " + str(remainingSeconds) + " " + _("seconds."), MessageBox.TYPE_ERROR)) + else: + self.setTries(3) + self["tries"] = Label("") - self.onShown.append(boundFunction(self.setTries, tries)) - + self.onShown.append(self.showTries) + def keyNumberGlobal(self, number): if self["input"].currPos == len(self["input"]) - 1: InputBox.keyNumberGlobal(self, number) @@ -115,22 +125,44 @@ class PinInput(InputBox): return False def go(self): + self.triesEntry.time.value = int(time()) + self.triesEntry.time.save() if self.checkPin(self["input"].getText()): - self.close((True, self.tries)) + self.setTries(3) + self.closePinCorrect() else: self.keyHome() - self.setTries(self.tries - 1) - if self.tries == 0: - self.close((False, self.tries)) + self.decTries() + if self.getTries() == 0: + self.closePinWrong() else: pass + + def closePinWrong(self, *args): + print "args:", args + self.close(False) + + def closePinCorrect(self, *args): + self.close(True) + + def closePinCancel(self, *args): + self.close(None) def cancel(self): rcinput = eRCInput.getInstance() rcinput.setKeyboardMode(rcinput.kmNone) - self.close((None, self.tries)) - + self.closePinCancel() + + def getTries(self): + return self.triesEntry.tries.value + + def decTries(self): + self.setTries(self.triesEntry.tries.value - 1) + self.showTries() + def setTries(self, tries): - self.tries = tries - if self.showTries: - self["tries"].setText(_("Tries left:") + " " + str(tries)) \ No newline at end of file + self.triesEntry.tries.value = tries + self.triesEntry.tries.save() + + def showTries(self): + self["tries"].setText(_("Tries left:") + " " + str(self.getTries())) \ No newline at end of file diff --git a/lib/python/Screens/ParentalControlSetup.py b/lib/python/Screens/ParentalControlSetup.py index c3c0cb0b..d4911953 100644 --- a/lib/python/Screens/ParentalControlSetup.py +++ b/lib/python/Screens/ParentalControlSetup.py @@ -19,7 +19,10 @@ import operator class ProtectedScreen: def __init__(self): if self.isProtected(): - self.onFirstExecBegin.append(boundFunction(self.session.openWithCallback, self.pinEntered, PinInput, pinList = [self.protectedWithPin()], title = self.getPinText(), windowTitle = _("Change pin code"))) + self.onFirstExecBegin.append(boundFunction(self.session.openWithCallback, self.pinEntered, PinInput, pinList = [self.protectedWithPin()], triesEntry = self.getTriesEntry(), title = self.getPinText(), windowTitle = _("Change pin code"))) + + def getTriesEntry(self): + return config.ParentalControl.retries.setuppin def getPinText(self): return _("Please enter the correct pin code") @@ -31,10 +34,9 @@ class ProtectedScreen: return config.ParentalControl.setuppin.value def pinEntered(self, result): - if result[0] is None: + if result is None: self.close() - if not result[0]: - print result, "-", self.protectedWithPin() + elif not result: self.session.openWithCallback(self.close, MessageBox, _("The pin code you entered is wrong."), MessageBox.TYPE_ERROR) class ParentalControlSetup(Screen, ConfigListScreen, ProtectedScreen): diff --git a/po/Makefile.am b/po/Makefile.am index c6711977..5fcc93d0 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -38,6 +38,7 @@ enigma2.pot: ../lib/python/Screens/TimerEntry.py \ ../lib/python/Screens/TimeDateInput.py \ ../lib/python/Screens/Wizard.py \ + ../lib/python/Screens/InputBox.py \ ../lib/python/Screens/ServiceScan.py \ ../lib/python/Screens/InfoBarGenerics.py \ ../lib/python/Screens/ChannelSelection.py \ diff --git a/po/ar.po b/po/ar.po index 0f3c17c3..716b3aba 100755 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-01-10 01:17+0300\n" "Last-Translator: hazem \n" "Language-Team: Arabic \n" @@ -35,8 +35,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -117,7 +117,7 @@ msgstr "" msgid "A" msgstr "أ" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -145,7 +145,7 @@ msgstr "أأ" msgid "AB" msgstr "أب" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "" @@ -166,7 +166,7 @@ msgstr "أضف مؤقت" msgid "Advanced" msgstr "متقدم" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "" @@ -187,7 +187,7 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -289,11 +289,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "قناه" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "قناه:" @@ -313,7 +313,7 @@ msgstr "" msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "" @@ -373,7 +373,7 @@ msgstr "" msgid "Delete" msgstr "أمسح" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "" @@ -381,7 +381,7 @@ msgstr "" msgid "Delete failed!" msgstr "فشل المسح" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "الوصـف" @@ -417,11 +417,11 @@ msgstr "" msgid "Disable" msgstr "إبطال" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -454,7 +454,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -513,11 +513,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "النهايه" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr " إنتهاء الوقت" @@ -527,7 +527,7 @@ msgstr " إنتهاء الوقت" msgid "English" msgstr "إنجليزى" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -569,7 +569,7 @@ msgstr "" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "التردد" @@ -579,8 +579,8 @@ msgstr "التردد" msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "الجمعه" @@ -632,8 +632,8 @@ msgstr "قرص صلب" msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "" @@ -670,7 +670,11 @@ msgstr "تفعيل البدأ" msgid "Initializing Harddisk..." msgstr "تفعيل القرص الصلب" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -710,7 +714,7 @@ msgstr "إختيار اللغه" msgid "Latitude" msgstr "خط العرض" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -754,16 +758,16 @@ msgstr "" msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "الاثنين - الجمعه" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "الاثنين" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "" @@ -799,7 +803,7 @@ msgstr "غير موجود" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "الاسم" @@ -820,7 +824,7 @@ msgstr "" msgid "New" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -836,13 +840,13 @@ msgstr "التالى" msgid "No" msgstr "لا" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "لا يوجد قرص صلب\n" "أو ان القرص الصلب لم يبدأ" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "" @@ -881,7 +885,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -907,7 +911,7 @@ msgstr "" msgid "Packet management" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -919,7 +923,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "عرض الافلام المسجله" -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "" @@ -931,7 +935,7 @@ msgstr "" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -939,11 +943,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -1041,7 +1045,7 @@ msgstr "مقدمو الخدمه" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1065,7 +1069,7 @@ msgstr "" msgid "Recording" msgstr "تسجيل" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1081,7 +1085,7 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "" @@ -1098,7 +1102,7 @@ msgstr "إعاده الضبط" msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1120,8 +1124,8 @@ msgstr "قمر صناعى" msgid "Satellites" msgstr "اقمار صناعيه" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "السبت" @@ -1138,15 +1142,15 @@ msgstr "" msgid "Search west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "اختار القناه التى تريد ان تسجل منها" @@ -1232,15 +1236,15 @@ msgstr "جنوب" msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "أبـدأ" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "أبـدأ التسجيل؟" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "وقت البـدأ" @@ -1256,7 +1260,7 @@ msgstr "" msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1267,7 +1271,7 @@ msgstr "" msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "" @@ -1283,7 +1287,7 @@ msgstr "" msgid "Stored position" msgstr "الوضع المخزن" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "" @@ -1292,12 +1296,12 @@ msgstr "" msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "الاحد" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1305,11 +1309,11 @@ msgstr "" msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "" @@ -1332,8 +1336,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1354,8 +1358,8 @@ msgstr "" msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "الخميس" @@ -1363,7 +1367,7 @@ msgstr "الخميس" msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "نوع المؤقت" @@ -1400,13 +1404,17 @@ msgstr "" msgid "Transpondertype" msgstr "" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "الثلاثاء" @@ -1481,7 +1489,7 @@ msgstr "USALS für diesen Sat benutzen" msgid "User defined" msgstr "يحددها المستخدم" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1498,12 +1506,12 @@ msgstr "" msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "الاربعاء" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "يوم الاسبوع" @@ -1524,6 +1532,10 @@ msgstr "نعم" msgid "You cannot delete this!" msgstr "لايمكنك مسح هذه !" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1574,18 +1586,18 @@ msgstr "" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "" @@ -1621,7 +1633,7 @@ msgstr "للخلف" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "" @@ -1641,7 +1653,7 @@ msgstr "" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1649,7 +1661,7 @@ msgstr "" msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "يومى" @@ -1665,12 +1677,12 @@ msgstr "مسح ..." msgid "disable move mode" msgstr "ألغاء وضع التحريك" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "" @@ -1714,7 +1726,7 @@ msgstr "المساحه المتبقيه فى القرص" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "" @@ -1738,7 +1750,7 @@ msgstr "تفعيل الكـام" msgid "leave movie player..." msgstr "اترك عارض الافلام .." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1760,15 +1772,19 @@ msgstr "يدوى" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "القناه التاليه" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "" @@ -1805,7 +1821,7 @@ msgstr "لا يعمـل!" msgid "on" msgstr "يعمل!" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "مره واحده" @@ -1813,15 +1829,15 @@ msgstr "مره واحده" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1829,7 +1845,7 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1837,15 +1853,15 @@ msgstr "" msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "" @@ -1870,11 +1886,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "متكرر" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1920,6 +1936,10 @@ msgstr "حاله البحث" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1928,11 +1948,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "إظهار دليل البرامج الالكترونى" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "" @@ -1942,27 +1962,27 @@ msgstr "" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -1982,7 +2002,7 @@ msgstr "" msgid "this recording" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -1994,7 +2014,7 @@ msgstr "قناه غير معروفه" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "محدده من قبل المستخدم" @@ -2002,7 +2022,7 @@ msgstr "محدده من قبل المستخدم" msgid "vertical" msgstr "رأسى" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -2018,7 +2038,7 @@ msgstr "" msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "اسبوعى" @@ -2036,7 +2056,7 @@ msgstr "نعـم" msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "" @@ -2434,10 +2454,6 @@ msgstr "ضبط شاشه الكريستال" msgid "No, scan later manually" msgstr "لا، بحث يدوى بعد ذلك" -#: ../data/ -msgid "Input" -msgstr "" - #: ../data/ msgid "Soundcarrier" msgstr "حامل الصوت" diff --git a/po/ca.po b/po/ca.po index 08e52a9a..192efa12 100755 --- a/po/ca.po +++ b/po/ca.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-09-04 14:14+0200\n" "Last-Translator: Oriol Pellicer i Sabrià \n" "Language-Team: \n" @@ -40,8 +40,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -124,7 +124,7 @@ msgstr "" msgid "A" msgstr "Un" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -156,7 +156,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Activar PiP" @@ -177,7 +177,7 @@ msgstr "Gravar" msgid "Advanced" msgstr "Avançat" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Després de l'event" @@ -198,7 +198,7 @@ msgstr "Àrab" msgid "Artist:" msgstr "Artista:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Opcions d'àudio" @@ -268,7 +268,7 @@ msgstr "Unitat CF" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -300,11 +300,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Canal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Canal:" @@ -324,7 +324,7 @@ msgstr "Netejar" msgid "Clear before scan" msgstr "Netejar abans de buscar" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Borrar log" @@ -384,7 +384,7 @@ msgstr "Data" msgid "Delete" msgstr "Esborrar" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Esborrar entrada" @@ -392,7 +392,7 @@ msgstr "Esborrar entrada" msgid "Delete failed!" msgstr "Ha fallat l'eliminació!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Descripció" @@ -428,11 +428,11 @@ msgstr "Repetir DiSEqC" msgid "Disable" msgstr "Deshabilitar" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Desactivar PiP" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -473,7 +473,7 @@ msgstr "" "Vols realitzar ara el backup?\n" "Després de prémer OK, sisplau espera!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "Vols continuar aquesta gravació?" @@ -532,11 +532,11 @@ msgstr "Activar 5V per a antena activa" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Fi" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "HoraFi" @@ -546,7 +546,7 @@ msgstr "HoraFi" msgid "English" msgstr "Anglès" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Entrar al menú principal..." @@ -588,7 +588,7 @@ msgstr "Francès" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Freqüència" @@ -598,8 +598,8 @@ msgstr "Freqüència" msgid "Fri" msgstr "Div" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Divendres" @@ -651,8 +651,8 @@ msgstr "Disc dur" msgid "Hierarchy mode" msgstr "Mode jeràrquic" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Quants minuts vols gravar?" @@ -691,7 +691,11 @@ msgstr "Inicialitzar" msgid "Initializing Harddisk..." msgstr "Inicialitzant disc dur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Entrada" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Gravació instantània..." @@ -731,7 +735,7 @@ msgstr "Selecció d'idioma" msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Esq." @@ -775,16 +779,16 @@ msgstr "Modulació" msgid "Mon" msgstr "Dill" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Dill-Div" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Dilluns" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Moure Picture in Picture" @@ -820,7 +824,7 @@ msgstr "N/D" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nom" @@ -841,7 +845,7 @@ msgstr "Escanejar xarxa" msgid "New" msgstr "Nou" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -857,11 +861,11 @@ msgstr "Següent" msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "No hi ha disc dur o no està inicialitzat!" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "No hi ha info de l'event, gravant indefinidament." @@ -903,7 +907,7 @@ msgstr "" "Res per buscar!\n" "Sisplau configura el sintonitzador abans de buscar un canal." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -929,7 +933,7 @@ msgstr "Actualització online" msgid "Packet management" msgstr "Gestió de paquets" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -941,7 +945,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Reproduir pel·lícules gravades..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Sisplau escull una extensió..." @@ -953,7 +957,7 @@ msgstr "Introdueix un nom per a la nova llista" msgid "Please enter a name for the new marker" msgstr "Introdueix un nom per al nou marcador" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -961,11 +965,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Sisplau selecciona un subservei a gravar..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Sisplau selecciona un subservei..." @@ -1066,7 +1070,7 @@ msgstr "Proveïdors" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1090,7 +1094,7 @@ msgstr "Sortir del zappeig ràpid dels subserveis?" msgid "Recording" msgstr "Gravant" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1106,7 +1110,7 @@ msgstr "Esborrar plugins" msgid "Remove plugins" msgstr "Esborrar plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Tipus de repetició" @@ -1123,7 +1127,7 @@ msgstr "Resetejar" msgid "Restore" msgstr "Restaurar" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Dreta" @@ -1145,8 +1149,8 @@ msgstr "Satèl·lit" msgid "Satellites" msgstr "Satèl·lits" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Dissabte" @@ -1163,15 +1167,15 @@ msgstr "Buscar a l'est" msgid "Search west" msgstr "Buscar a l'oest" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Seleccionar mode àudio" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Seleccionar pista d'àudio" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Selecciona el canal a gravar" @@ -1260,15 +1264,15 @@ msgstr "Sud" msgid "Spanish" msgstr "Espanyol" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Inici" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Iniciar gravació?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Hora inici" @@ -1284,7 +1288,7 @@ msgstr "Pas a l'est" msgid "Step west" msgstr "Pas a l'oest" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stèreo" @@ -1295,7 +1299,7 @@ msgstr "Stèreo" msgid "Stop" msgstr "Parar" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Cancel·lar la pausa?" @@ -1311,7 +1315,7 @@ msgstr "Guardar la posició" msgid "Stored position" msgstr "Posició guardada" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Llista de subserveis..." @@ -1320,12 +1324,12 @@ msgstr "Llista de subserveis..." msgid "Sun" msgstr "Diu" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Diumenge" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1333,11 +1337,11 @@ msgstr "" msgid "Swedish" msgstr "Suec" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Canviar al següent subservei" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Canviar al subservei anterior" @@ -1360,8 +1364,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1382,8 +1386,8 @@ msgstr "Llindar" msgid "Thu" msgstr "Dij" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Dijous" @@ -1391,7 +1395,7 @@ msgstr "Dijous" msgid "Time" msgstr "Hora" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Tipus de gravació" @@ -1428,13 +1432,17 @@ msgstr "Transponedor" msgid "Transpondertype" msgstr "Tipus de transponedor" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Dim" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Dimarts" @@ -1509,7 +1517,7 @@ msgstr "Utilitzar usals per a aquest sat" msgid "User defined" msgstr "Definit per l'usuari" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Veure teletext..." @@ -1526,12 +1534,12 @@ msgstr "" msgid "Wed" msgstr "Dime" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Dimecres" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "DiaSetmana" @@ -1552,6 +1560,10 @@ msgstr "Si" msgid "You cannot delete this!" msgstr "Això no es pot eliminar!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Has seleccionat una llista" @@ -1604,18 +1616,18 @@ msgstr "afegir el fitxer a la llista" msgid "add marker" msgstr "afegir marcador" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "afegir gravació (introdueix la durada)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "afegir gravació (indefinidament)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "afegir gravació (fins que s'acabi el programa)" @@ -1653,7 +1665,7 @@ msgstr "enrere" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "canviar la gravació (durada)" @@ -1673,7 +1685,7 @@ msgstr "netejar la llista" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "continuar" @@ -1681,7 +1693,7 @@ msgstr "continuar" msgid "copy to favourites" msgstr "copiar als preferits" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "diàriament" @@ -1697,12 +1709,12 @@ msgstr "esborrar..." msgid "disable move mode" msgstr "desactivar mode moviment" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "no facis res" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "no gravar" @@ -1746,7 +1758,7 @@ msgstr "espai lliure al disc" msgid "full /etc directory" msgstr "tot el directori /etc" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "aturar completament" @@ -1770,7 +1782,7 @@ msgstr "iniciar mòdul" msgid "leave movie player..." msgstr "sortir del reproductor de pel·lícules..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "esquerra" @@ -1792,15 +1804,19 @@ msgstr "manual" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "canal següent" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "canal històric següent" @@ -1837,7 +1853,7 @@ msgstr "" msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "un sol cop" @@ -1845,15 +1861,15 @@ msgstr "un sol cop" msgid "only /etc/enigma2 directory" msgstr "només el directori /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1861,7 +1877,7 @@ msgstr "" msgid "pass" msgstr "passa" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "pausa" @@ -1869,15 +1885,15 @@ msgstr "pausa" msgid "please press OK when ready" msgstr "prem OK quan estiguis a punt" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "canal anterior" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "canal històric anterior" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "gravar" @@ -1902,11 +1918,11 @@ msgstr "" msgid "remove new found flag" msgstr "esborrar nova marca trobada" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "repetit" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "dreta" @@ -1952,6 +1968,10 @@ msgstr "estat de la recerca" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1960,11 +1980,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "mostrar EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "mostrar detalls del programa" @@ -1974,27 +1994,27 @@ msgstr "mostrar detalls del programa" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "saltar endarrere" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "saltar endavant" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "activar pausa" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "stèreo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "aturar gravació" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "cancel·lar pausa" @@ -2014,7 +2034,7 @@ msgstr "text" msgid "this recording" msgstr "aquesta gravació" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2026,7 +2046,7 @@ msgstr "canal desconegut" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "definit per l'usuari" @@ -2034,7 +2054,7 @@ msgstr "definit per l'usuari" msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "veure extensions..." @@ -2050,7 +2070,7 @@ msgstr "" msgid "waiting" msgstr "esperant" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "setmanalment" @@ -2068,7 +2088,7 @@ msgstr "si" msgid "yes (keep feeds)" msgstr "si (mantenir feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zappejar" @@ -2486,10 +2506,6 @@ msgstr "Config LCD" msgid "No, scan later manually" msgstr "No, buscar manualment més tard" -#: ../data/ -msgid "Input" -msgstr "Entrada" - #: ../data/ msgid "Soundcarrier" msgstr "Portadora de so" diff --git a/po/da.po b/po/da.po index 60aa03e8..666fe8c5 100755 --- a/po/da.po +++ b/po/da.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-09-08 21:11+0100\n" "Last-Translator: Gaj1 \n" "Language-Team: The Polar Team \n" @@ -32,8 +32,8 @@ msgstr "\" ?" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Å" @@ -116,7 +116,7 @@ msgstr "??" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -148,7 +148,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Aktiver Billed i Billed" @@ -169,7 +169,7 @@ msgstr "Tilføj timer" msgid "Advanced" msgstr "Avanceret" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Efter film" @@ -190,7 +190,7 @@ msgstr "Arabisk" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Lyd Valg..." @@ -260,7 +260,7 @@ msgstr "CF Disk" msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -292,11 +292,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanal:" @@ -316,7 +316,7 @@ msgstr "Oprydning" msgid "Clear before scan" msgstr "Slet før søgning" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Slet log" @@ -376,7 +376,7 @@ msgstr "Dato" msgid "Delete" msgstr "Slet" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Slet adgang" @@ -384,7 +384,7 @@ msgstr "Slet adgang" msgid "Delete failed!" msgstr "Slette fejl!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Beskrivelse" @@ -420,11 +420,11 @@ msgstr "DiSEqC gentagelser" msgid "Disable" msgstr "Afbryd" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Afbryd Billed i Billed" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "Afbryde undertekster" @@ -465,7 +465,7 @@ msgstr "" "Vil du lave backup nu?\n" "Efter tryk på OK, vent venligst!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "Vil du genoptage denne afspilning?" @@ -524,11 +524,11 @@ msgstr "Tilslut 5V for aktiv antenne" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Slut" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "SlutTid" @@ -538,7 +538,7 @@ msgstr "SlutTid" msgid "English" msgstr "Engelsk" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Åbne hoved menu..." @@ -580,7 +580,7 @@ msgstr "Fransk" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekvens" @@ -590,8 +590,8 @@ msgstr "Frekvens" msgid "Fri" msgstr "Fre" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Fredag" @@ -643,8 +643,8 @@ msgstr "Harddisk" msgid "Hierarchy mode" msgstr "Hiraki type" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Hvor mange minutter vil du optage?" @@ -681,7 +681,11 @@ msgstr "Initialisere" msgid "Initializing Harddisk..." msgstr "Initialiserer Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Indgang" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Hurtig Optagelse..." @@ -721,7 +725,7 @@ msgstr "Valg af sprog" msgid "Latitude" msgstr "Breddegrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Venstre" @@ -765,16 +769,16 @@ msgstr "Modulation" msgid "Mon" msgstr "Man" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Mandag til Fredag" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Mandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Flytte Billed i Billed" @@ -810,7 +814,7 @@ msgstr "Ikke tilgængelig" msgid "NIM " msgstr "Tuner" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Navn" @@ -831,7 +835,7 @@ msgstr "Netværks søgning" msgid "New" msgstr "Ny" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -847,13 +851,13 @@ msgstr "Næste" msgid "No" msgstr "Nej" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Ingen HDD fundet eller\n" "HDD ikke initialiseret!." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Ingen EPG-Data fundet, optagelse startet." @@ -894,7 +898,7 @@ msgstr "" "Intet at søge!\n" "Sæt venligst Tuner indstilling op før du starter søgning." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -920,7 +924,7 @@ msgstr "Online-Opgradering" msgid "Packet management" msgstr "Pakke redigering" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -932,7 +936,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Afspil optagede film..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Vælg venligst en udvidelse..." @@ -944,7 +948,7 @@ msgstr "Indtast venligst navn for ny pakke" msgid "Please enter a name for the new marker" msgstr "Indtast venligst navn for ny marker" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -952,11 +956,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Vælg en underkanal til at optagelse..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vælg venligst en underkanal..." @@ -1057,7 +1061,7 @@ msgstr "Udbydere" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "Hurtigzap" @@ -1081,7 +1085,7 @@ msgstr "Vil du afslutte underkanals hurtigzap?" msgid "Recording" msgstr "Optager" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1097,7 +1101,7 @@ msgstr "Fjerne Plugins" msgid "Remove plugins" msgstr "Fjerne plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Gentage type" @@ -1114,7 +1118,7 @@ msgstr "Reset" msgid "Restore" msgstr "Gendanne" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Højre" @@ -1136,8 +1140,8 @@ msgstr "Satellit" msgid "Satellites" msgstr "Satellitter" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Lørdag" @@ -1154,15 +1158,15 @@ msgstr "Søg Øst" msgid "Search west" msgstr "Søg Vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Vælg lyd type" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Vælg lyd spor" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Vælg optagekanal" @@ -1251,15 +1255,15 @@ msgstr "Syd" msgid "Spanish" msgstr "Spansk" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Start optagelse?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "StartTid" @@ -1275,7 +1279,7 @@ msgstr "Drej mod Øst" msgid "Step west" msgstr "Drej mod Vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stereo" @@ -1286,7 +1290,7 @@ msgstr "Stereo" msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Stoppe Timeshift?" @@ -1302,7 +1306,7 @@ msgstr "Gemme Position" msgid "Stored position" msgstr "Gemt Position" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Underkanal liste..." @@ -1311,12 +1315,12 @@ msgstr "Underkanal liste..." msgid "Sun" msgstr "Søn" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Søndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "Bytte kanaler" @@ -1324,11 +1328,11 @@ msgstr "Bytte kanaler" msgid "Swedish" msgstr "Svensk" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Skift til næste underkanal" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Skift til forrige underkanal" @@ -1351,8 +1355,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1373,8 +1377,8 @@ msgstr "Threshold" msgid "Thu" msgstr "Tor" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Torsdag" @@ -1382,7 +1386,7 @@ msgstr "Torsdag" msgid "Time" msgstr "Tid" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Timer Type" @@ -1419,13 +1423,17 @@ msgstr "Transponder" msgid "Transpondertype" msgstr "Transpondertype" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Tir" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Tirsdag" @@ -1500,7 +1508,7 @@ msgstr "Brug USALS til denne position" msgid "User defined" msgstr "Brugerdefineret" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Se teletekst..." @@ -1517,12 +1525,12 @@ msgstr "V" msgid "Wed" msgstr "Ons" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Onsdag" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Ugedag" @@ -1543,6 +1551,10 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Dette kan ikke slettes!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Du valgte en spilleliste" @@ -1595,18 +1607,18 @@ msgstr "Tilføj fil til spilleliste" msgid "add marker" msgstr "Tilføj marker" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "Tilføj optagelse ( skriv optagelses længde) " -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "Tilføj optagelse (nu)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "Tilføj optagelse (stop efter nuværende)" @@ -1644,7 +1656,7 @@ msgstr "Tilbage" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "Skifte optagelse (længde)" @@ -1664,7 +1676,7 @@ msgstr "Slet spilleliste" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "Fortsæt" @@ -1672,7 +1684,7 @@ msgstr "Fortsæt" msgid "copy to favourites" msgstr "Kopier til favoritter" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "Daglig" @@ -1688,12 +1700,12 @@ msgstr "Slet..." msgid "disable move mode" msgstr "Slå flytte type fra" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "Gør intet" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "Optag ikke" @@ -1737,7 +1749,7 @@ msgstr "Fri HDD plads" msgid "full /etc directory" msgstr "full /etc direktorie" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "Gå til dyb standby" @@ -1761,7 +1773,7 @@ msgstr "Initialiser modul" msgid "leave movie player..." msgstr "Forlad film afspiller..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "Venstre" @@ -1783,15 +1795,19 @@ msgstr "Manuelt" msgid "mins" msgstr "min" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "Næste kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "Næste kanal i hukommelse" @@ -1828,7 +1844,7 @@ msgstr "Fra" msgid "on" msgstr "Til" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "En gang" @@ -1836,15 +1852,15 @@ msgstr "En gang" msgid "only /etc/enigma2 directory" msgstr "Kun /etc/enigma2 direktorie" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "Åbne kanalliste" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "Åbne kanalliste(ned)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "Åbne kanalliste(op)" @@ -1852,7 +1868,7 @@ msgstr "Åbne kanalliste(op)" msgid "pass" msgstr "Ok" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "Pause" @@ -1860,15 +1876,15 @@ msgstr "Pause" msgid "please press OK when ready" msgstr "Tryk venligst OK når du er klar" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "Forrige kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "Forrige sete kanal" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "Optage" @@ -1893,11 +1909,11 @@ msgstr "" msgid "remove new found flag" msgstr "Fjerne nye fundne flag" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "Gentaget" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "Højre" @@ -1943,6 +1959,10 @@ msgstr "Søge status" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1951,11 +1971,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "Vis EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "Vis program detaljer" @@ -1965,27 +1985,27 @@ msgstr "Vis program detaljer" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "Drop tilbage" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "Drop fremad" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "Start timeshift" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "Stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "Stop optagelse" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "Stop timeshift" @@ -2005,7 +2025,7 @@ msgstr "Tekst" msgid "this recording" msgstr "Denne optagelse" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2017,7 +2037,7 @@ msgstr "Ukendt kanal" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "Brugerdefineret" @@ -2025,7 +2045,7 @@ msgstr "Brugerdefineret" msgid "vertical" msgstr "Vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "Se udvidelser..." @@ -2041,7 +2061,7 @@ msgstr "" msgid "waiting" msgstr "Venter" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "Ugentlig" @@ -2059,7 +2079,7 @@ msgstr "Ja" msgid "yes (keep feeds)" msgstr "Ja (behold feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zap" @@ -2472,10 +2492,6 @@ msgstr "LCD Indstilling" msgid "No, scan later manually" msgstr "Nej, søg senere manuelt" -#: ../data/ -msgid "Input" -msgstr "Indgang" - #: ../data/ msgid "Soundcarrier" msgstr "Lydfrekvens" diff --git a/po/de.po b/po/de.po index 43383b99..79e4a75d 100644 --- a/po/de.po +++ b/po/de.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" -"PO-Revision-Date: 2006-10-11 01:09+0100\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" +"PO-Revision-Date: 2006-10-11 17:13+0100\n" "Last-Translator: \n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -39,8 +39,8 @@ msgstr "" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -123,7 +123,7 @@ msgstr "" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -151,7 +151,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Bild in Bild aktivieren" @@ -172,7 +172,7 @@ msgstr "Timer setzen" msgid "Advanced" msgstr "Erweitert" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Nach dem Ereignis" @@ -193,7 +193,7 @@ msgstr "Arabisch" msgid "Artist:" msgstr "Künstler:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Audio Optionen" @@ -266,7 +266,7 @@ msgid "Cable" msgstr "Kabel" #: ../lib/python/Screens/Setup.py:85 -#: ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -299,12 +299,12 @@ msgstr "Kanal-Pincodes ändern" msgid "Change setup pin" msgstr "Einstellungs-Pincode ändern" -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:179 #: ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanal:" @@ -324,7 +324,7 @@ msgstr "Aufräumen" msgid "Clear before scan" msgstr "Vor der Suche löschen" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Log löschen" @@ -385,7 +385,7 @@ msgstr "Datum" msgid "Delete" msgstr "Löschen" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Eintrag löschen" @@ -393,7 +393,7 @@ msgstr "Eintrag löschen" msgid "Delete failed!" msgstr "Löschen fehlgeschlagen." -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Beschreibung" @@ -429,11 +429,11 @@ msgstr "DiSEqC-Wiederholungen" msgid "Disable" msgstr "Aus" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Bild in Bild ausschalten" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "Untertitel abschalten" @@ -474,7 +474,7 @@ msgstr "" "Wollen Sie jetzt eine Sicherung durchführen?\n" "Nach einem Druck auf OK bitte warten!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "Möchten Sie die Wiedergabe an der letzten Stelle fortsetzen?" @@ -533,11 +533,11 @@ msgstr "5V für aktive Antenne" msgid "Enable parental control" msgstr "Jugendschutz anschalten" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Ende" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Endzeit" @@ -547,7 +547,7 @@ msgstr "Endzeit" msgid "English" msgstr "Englisch" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Öffne Hauptmenü" @@ -589,7 +589,7 @@ msgstr "Französisch" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequenz" @@ -599,8 +599,8 @@ msgstr "Frequenz" msgid "Fri" msgstr "Fr" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Freitag" @@ -653,8 +653,8 @@ msgstr "Festplatte" msgid "Hierarchy mode" msgstr "Hierarchy" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Wie viele Minuten möchten Sie aufnehmen?" @@ -691,7 +691,12 @@ msgstr "Initialisieren" msgid "Initializing Harddisk..." msgstr "Initialisiere Festplatte..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 +#: ../data/ +msgid "Input" +msgstr "Eingabe" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Sofortaufnahme" @@ -733,7 +738,7 @@ msgstr "Sprachauswahl" msgid "Latitude" msgstr "Breitengrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Links" @@ -778,16 +783,16 @@ msgstr "Modulation" msgid "Mon" msgstr "Mo" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Montag bis Freitag" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Montag" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Verschiebe Bild in Bild" @@ -823,7 +828,7 @@ msgstr "Nicht verfügbar" msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Name" @@ -846,7 +851,7 @@ msgstr "Netzwerksuche" msgid "New" msgstr "Neu" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "Neuer Pincode" @@ -862,13 +867,13 @@ msgstr "Vor" msgid "No" msgstr "Nein" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Keine Festplatte gefunden oder\n" "Festplatte nicht initialisiert." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Keine EPG-Daten gefunden. Starte unbegrenzte Aufnahme." @@ -910,7 +915,7 @@ msgstr "" "Bitte den Tuner vor der Suche einstellen." #: ../lib/python/Screens/Setup.py:84 -#: ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -936,7 +941,7 @@ msgstr "Online-Aktualisierung" msgid "Packet management" msgstr "Paketverwaltung" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 #: ../data/ msgid "Parental control" msgstr "Jugendschutz" @@ -949,7 +954,7 @@ msgstr "Jugendschutz-Typ" msgid "Play recorded movies..." msgstr "Aufgenommene Filme abspielen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Bitte eine Erweiterung auswählen..." @@ -961,7 +966,7 @@ msgstr "Bitte einen Namen für das neue Bouquet eingeben" msgid "Please enter a name for the new marker" msgstr "Bitte einen Namen für den neuen Marker eingeben" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "Bitte den korrekten Pincode eingeben" @@ -969,11 +974,11 @@ msgstr "Bitte den korrekten Pincode eingeben" msgid "Please enter the old pin code" msgstr "Bitte den alten Pincode eingeben" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Bitte einen Unterkanal zur Aufnahme auswählen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Bitte einen Unterkanal auswählen..." @@ -1074,7 +1079,7 @@ msgstr "Anbieter" msgid "Quick" msgstr "Schnell" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "Schnellumschalter" @@ -1098,7 +1103,7 @@ msgstr "Wirklich den Subservices-Schnellumschalter beenden?" msgid "Recording" msgstr "Aufnahmen" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "Nochmals den Pincode eingeben" @@ -1114,7 +1119,7 @@ msgstr "Plugins entfernen" msgid "Remove plugins" msgstr "Plugins entfernen" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Wiederholungstyp" @@ -1131,7 +1136,7 @@ msgstr "Zurücksetzen" msgid "Restore" msgstr "Zurückspielen" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Rechts" @@ -1154,8 +1159,8 @@ msgstr "Satellit" msgid "Satellites" msgstr "Satelliten" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Samstag" @@ -1172,15 +1177,15 @@ msgstr "Östlich suchen" msgid "Search west" msgstr "Westlich suchen" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Wähle Ton Modus" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Tonspur auswählen" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Kanal auswählen, von dem aufgenommen werden soll" @@ -1269,15 +1274,15 @@ msgstr "Süd" msgid "Spanish" msgstr "Spanisch" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Aufnahme beginnen?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Startzeit" @@ -1293,7 +1298,7 @@ msgstr "Schritt nach Osten" msgid "Step west" msgstr "Schritt nach Westen" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1304,7 +1309,7 @@ msgstr "" msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Timeshift beenden?" @@ -1320,7 +1325,7 @@ msgstr "Position speichern" msgid "Stored position" msgstr "gespeicherte Position" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Unterkanal Liste..." @@ -1329,12 +1334,12 @@ msgstr "Unterkanal Liste..." msgid "Sun" msgstr "So" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Sonntag" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "Kanäle tauschen" @@ -1342,11 +1347,11 @@ msgstr "Kanäle tauschen" msgid "Swedish" msgstr "Schwedisch" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Zum nächsten Unterkanal schalten" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Zum vorhergehenden Unterkanal schalten" @@ -1369,8 +1374,8 @@ msgid "The pin code has been changed successfully." msgstr "Der Pincode wurde erfolgreich geändert." #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "Der eingegebene Pincode ist falsch" @@ -1391,8 +1396,8 @@ msgstr "Grenze" msgid "Thu" msgstr "Do" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Donnerstag" @@ -1400,7 +1405,7 @@ msgstr "Donnerstag" msgid "Time" msgstr "Zeit" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Timer-Art" @@ -1437,13 +1442,17 @@ msgstr "Transponder" msgid "Transpondertype" msgstr "Transponder type" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "Übrige Versuche:" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Di" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Dienstag" @@ -1519,7 +1528,7 @@ msgstr "USALS für diesen Sat benutzen" msgid "User defined" msgstr "Benutzerdefiniert" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Videotext" @@ -1536,12 +1545,12 @@ msgstr "W" msgid "Wed" msgstr "Mi" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Mittwoch" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Wochentag" @@ -1562,6 +1571,10 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Sie können dies nicht löschen." +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "Sie müssen noch für" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Sie haben eine Wiedergabeliste ausgewählt" @@ -1614,18 +1627,18 @@ msgstr "Datei zur Wiedergabeliste hinzufügen" msgid "add marker" msgstr "Marker einfügen" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "Aufnahme hinzufügen (Aufnahmelänge eingeben)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "Aufnahme hinzufügen (unbegrenzt)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "Aufnahme hinzufügen (Aktuelle Sendung)" @@ -1663,7 +1676,7 @@ msgstr "zurück" msgid "blacklist" msgstr "Negativliste" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "Aufnahme ändern (Aufnahmelänge)" @@ -1683,7 +1696,7 @@ msgstr "Wiedergabeliste leeren" msgid "complex" msgstr "Komplex" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "Weiter" @@ -1691,7 +1704,7 @@ msgstr "Weiter" msgid "copy to favourites" msgstr "In Favoriten kopieren" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "täglich" @@ -1707,12 +1720,12 @@ msgstr "löschen..." msgid "disable move mode" msgstr "Verschiebemodus ausschalten" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "Nichts tun" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "Nicht aufnehmen" @@ -1756,7 +1769,7 @@ msgstr "freier Festplattenspeicher" msgid "full /etc directory" msgstr "komplettes /etc Verzeichnis" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "Box abschalten" @@ -1781,7 +1794,7 @@ msgstr "Modul initialisieren" msgid "leave movie player..." msgstr "Abspielmodus verlassen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "links" @@ -1803,15 +1816,19 @@ msgstr "manuell" msgid "mins" msgstr "min" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "Minuten und" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "niemals" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "Nächster Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "Nächster Kanal im Verlauf" @@ -1849,7 +1866,7 @@ msgstr "aus" msgid "on" msgstr "an" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "einmalig" @@ -1857,15 +1874,15 @@ msgstr "einmalig" msgid "only /etc/enigma2 directory" msgstr "nur /etc/enigma Verzeichnis" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "Kanalliste öffnen" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "Kanalliste öffnen(nach unten)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "Kanalliste öffnen(nach oben)" @@ -1873,7 +1890,7 @@ msgstr "Kanalliste öffnen(nach oben)" msgid "pass" msgstr "Durchgang" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "Pause" @@ -1881,15 +1898,15 @@ msgstr "Pause" msgid "please press OK when ready" msgstr "bitte OK drücken wenn bereit" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "Vorheriger Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "Vorherhiger Kanal im Verlauf" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "Aufnehmen" @@ -1914,11 +1931,11 @@ msgstr "Jugendschutz ausschalten" msgid "remove new found flag" msgstr "Entfernen der Neu gefunden Kennzeichnung" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "wiederholend" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "rechts" @@ -1964,6 +1981,10 @@ msgstr "Status" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "Sekunden warten." + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "Kanal-Pincode" @@ -1972,11 +1993,11 @@ msgstr "Kanal-Pincode" msgid "setup pin" msgstr "Einstellungs-Pincode" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "Zeige EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "Sendungs-Details anzeigen" @@ -1986,27 +2007,27 @@ msgstr "Sendungs-Details anzeigen" msgid "simple" msgstr "einfach" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "Rückwärts spulen" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "Vorwärts spulen" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "Timeshift starten" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "Aufnahme anhalten" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "Timeshift beenden" @@ -2027,7 +2048,7 @@ msgstr "Text" msgid "this recording" msgstr "Diese Aufnahme" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "Dieser Kanal ist durch einen Jugendschutz-Pincode geschützt." @@ -2039,7 +2060,7 @@ msgstr "unbekannter Service" msgid "until restart" msgstr "Bis zum Neustart" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "benutzerdefiniert" @@ -2047,7 +2068,7 @@ msgstr "benutzerdefiniert" msgid "vertical" msgstr "vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "Erweiterungen anzeigen" @@ -2063,7 +2084,7 @@ msgstr "warte auf CI..." msgid "waiting" msgstr "wartend" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "wöchentlich" @@ -2081,7 +2102,7 @@ msgstr "ja" msgid "yes (keep feeds)" msgstr "ja (Feeds behalten)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "Umschalten" @@ -2471,10 +2492,6 @@ msgstr "LCD Einstellung" msgid "No, scan later manually" msgstr "Nein, später suchen." -#: ../data/ -msgid "Input" -msgstr "Eingabe" - #: ../data/ msgid "Soundcarrier" msgstr "Tonträger" @@ -2787,6 +2804,8 @@ msgstr "Medienwiedergabe" msgid "Do you want to do another manual service scan?" msgstr "Wollen Sie eine weitere manuelle Suche durchführen?" +#~ msgid "You have to wait for about " +#~ msgstr "Sie müssen noch für ungefähr" #~ msgid "Cable provider" #~ msgstr "Kabelanbieter" #~ msgid "Classic" diff --git a/po/en.po b/po/en.po index d1417a6a..6e570aaa 100644 --- a/po/en.po +++ b/po/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2005-11-17 20:53+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -32,8 +32,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -140,7 +140,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Advanced" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -284,11 +284,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "" @@ -308,7 +308,7 @@ msgstr "" msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "" @@ -368,7 +368,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "" @@ -376,7 +376,7 @@ msgstr "" msgid "Delete failed!" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "" @@ -412,11 +412,11 @@ msgstr "" msgid "Disable" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -449,7 +449,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -506,11 +506,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "" @@ -520,7 +520,7 @@ msgstr "" msgid "English" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -562,7 +562,7 @@ msgstr "" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequency" @@ -572,8 +572,8 @@ msgstr "Frequency" msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "" @@ -625,8 +625,8 @@ msgstr "" msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "" @@ -663,7 +663,11 @@ msgstr "" msgid "Initializing Harddisk..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -703,7 +707,7 @@ msgstr "" msgid "Latitude" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -747,16 +751,16 @@ msgstr "" msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "" @@ -792,7 +796,7 @@ msgstr "" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "" @@ -813,7 +817,7 @@ msgstr "" msgid "New" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -829,11 +833,11 @@ msgstr "" msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "" @@ -872,7 +876,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -898,7 +902,7 @@ msgstr "" msgid "Packet management" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -910,7 +914,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "" @@ -922,7 +926,7 @@ msgstr "" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -930,11 +934,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -1032,7 +1036,7 @@ msgstr "" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1056,7 +1060,7 @@ msgstr "" msgid "Recording" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1072,7 +1076,7 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "" @@ -1089,7 +1093,7 @@ msgstr "" msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1111,8 +1115,8 @@ msgstr "Satellite" msgid "Satellites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "" @@ -1129,15 +1133,15 @@ msgstr "" msgid "Search west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "" @@ -1223,15 +1227,15 @@ msgstr "" msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "" @@ -1247,7 +1251,7 @@ msgstr "" msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1258,7 +1262,7 @@ msgstr "" msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "" @@ -1274,7 +1278,7 @@ msgstr "" msgid "Stored position" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "" @@ -1283,12 +1287,12 @@ msgstr "" msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1296,11 +1300,11 @@ msgstr "" msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "" @@ -1323,8 +1327,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1345,8 +1349,8 @@ msgstr "" msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "" @@ -1354,7 +1358,7 @@ msgstr "" msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "" @@ -1391,13 +1395,17 @@ msgstr "" msgid "Transpondertype" msgstr "" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "" @@ -1469,7 +1477,7 @@ msgstr "" msgid "User defined" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1486,12 +1494,12 @@ msgstr "" msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "" @@ -1512,6 +1520,10 @@ msgstr "" msgid "You cannot delete this!" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1562,18 +1574,18 @@ msgstr "" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "" @@ -1609,7 +1621,7 @@ msgstr "" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "" @@ -1629,7 +1641,7 @@ msgstr "" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1637,7 +1649,7 @@ msgstr "" msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "" @@ -1653,12 +1665,12 @@ msgstr "" msgid "disable move mode" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "" @@ -1702,7 +1714,7 @@ msgstr "" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "" @@ -1726,7 +1738,7 @@ msgstr "" msgid "leave movie player..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1748,15 +1760,19 @@ msgstr "" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "" @@ -1793,7 +1809,7 @@ msgstr "" msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "" @@ -1801,15 +1817,15 @@ msgstr "" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1817,7 +1833,7 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1825,15 +1841,15 @@ msgstr "" msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "" @@ -1858,11 +1874,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1900,6 +1916,10 @@ msgstr "" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1908,11 +1928,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "" @@ -1922,27 +1942,27 @@ msgstr "" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -1962,7 +1982,7 @@ msgstr "" msgid "this recording" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -1974,7 +1994,7 @@ msgstr "" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "" @@ -1982,7 +2002,7 @@ msgstr "" msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -1998,7 +2018,7 @@ msgstr "" msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "" @@ -2016,7 +2036,7 @@ msgstr "" msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "" @@ -2411,10 +2431,6 @@ msgstr "" msgid "No, scan later manually" msgstr "" -#: ../data/ -msgid "Input" -msgstr "" - #: ../data/ msgid "Soundcarrier" msgstr "" diff --git a/po/enigma2.pot b/po/enigma2.pot index 81b37b1d..0cd58dd6 100644 --- a/po/enigma2.pot +++ b/po/enigma2.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:09+0200\n" +"POT-Creation-Date: 2006-10-11 17:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,8 +32,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -140,7 +140,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "" @@ -161,7 +161,7 @@ msgstr "" msgid "Advanced" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -284,11 +284,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "" @@ -308,7 +308,7 @@ msgstr "" msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "" @@ -368,7 +368,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "" @@ -376,7 +376,7 @@ msgstr "" msgid "Delete failed!" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "" @@ -412,11 +412,11 @@ msgstr "" msgid "Disable" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -449,7 +449,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -506,11 +506,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "" @@ -520,7 +520,7 @@ msgstr "" msgid "English" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -562,7 +562,7 @@ msgstr "" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "" @@ -572,8 +572,8 @@ msgstr "" msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "" @@ -625,8 +625,8 @@ msgstr "" msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "" @@ -663,7 +663,11 @@ msgstr "" msgid "Initializing Harddisk..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -703,7 +707,7 @@ msgstr "" msgid "Latitude" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -747,16 +751,16 @@ msgstr "" msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "" @@ -792,7 +796,7 @@ msgstr "" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "" @@ -813,7 +817,7 @@ msgstr "" msgid "New" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -829,11 +833,11 @@ msgstr "" msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "" @@ -872,7 +876,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -898,7 +902,7 @@ msgstr "" msgid "Packet management" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -910,7 +914,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "" @@ -922,7 +926,7 @@ msgstr "" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -930,11 +934,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -1032,7 +1036,7 @@ msgstr "" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1056,7 +1060,7 @@ msgstr "" msgid "Recording" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1072,7 +1076,7 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "" @@ -1089,7 +1093,7 @@ msgstr "" msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1111,8 +1115,8 @@ msgstr "" msgid "Satellites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "" @@ -1129,15 +1133,15 @@ msgstr "" msgid "Search west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "" @@ -1223,15 +1227,15 @@ msgstr "" msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "" @@ -1247,7 +1251,7 @@ msgstr "" msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1258,7 +1262,7 @@ msgstr "" msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "" @@ -1274,7 +1278,7 @@ msgstr "" msgid "Stored position" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "" @@ -1283,12 +1287,12 @@ msgstr "" msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1296,11 +1300,11 @@ msgstr "" msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "" @@ -1323,8 +1327,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1345,8 +1349,8 @@ msgstr "" msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "" @@ -1354,7 +1358,7 @@ msgstr "" msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "" @@ -1391,13 +1395,17 @@ msgstr "" msgid "Transpondertype" msgstr "" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "" @@ -1469,7 +1477,7 @@ msgstr "" msgid "User defined" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1486,12 +1494,12 @@ msgstr "" msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "" @@ -1512,6 +1520,10 @@ msgstr "" msgid "You cannot delete this!" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1562,18 +1574,18 @@ msgstr "" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "" @@ -1609,7 +1621,7 @@ msgstr "" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "" @@ -1629,7 +1641,7 @@ msgstr "" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1637,7 +1649,7 @@ msgstr "" msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "" @@ -1653,12 +1665,12 @@ msgstr "" msgid "disable move mode" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "" @@ -1702,7 +1714,7 @@ msgstr "" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "" @@ -1726,7 +1738,7 @@ msgstr "" msgid "leave movie player..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1748,15 +1760,19 @@ msgstr "" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "" @@ -1793,7 +1809,7 @@ msgstr "" msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "" @@ -1801,15 +1817,15 @@ msgstr "" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1817,7 +1833,7 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1825,15 +1841,15 @@ msgstr "" msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "" @@ -1858,11 +1874,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1900,6 +1916,10 @@ msgstr "" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1908,11 +1928,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "" @@ -1922,27 +1942,27 @@ msgstr "" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -1962,7 +1982,7 @@ msgstr "" msgid "this recording" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -1974,7 +1994,7 @@ msgstr "" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "" @@ -1982,7 +2002,7 @@ msgstr "" msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -1998,7 +2018,7 @@ msgstr "" msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "" @@ -2016,7 +2036,7 @@ msgstr "" msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "" @@ -2411,10 +2431,6 @@ msgstr "" msgid "No, scan later manually" msgstr "" -#: ../data/ -msgid "Input" -msgstr "" - #: ../data/ msgid "Soundcarrier" msgstr "" diff --git a/po/es.po b/po/es.po index a845d251..e15a01f3 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-06-26 14:50+0200\n" "Last-Translator: Jose Juan Zapater \n" "Language-Team: none\n" @@ -37,8 +37,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -151,7 +151,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Activar PiP" @@ -172,7 +172,7 @@ msgstr "Grabar" msgid "Advanced" msgstr "Avanzado" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Después del evento" @@ -193,7 +193,7 @@ msgstr "Arábigo" msgid "Artist:" msgstr "Artista:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Opciones de sonido..." @@ -263,7 +263,7 @@ msgstr "Unidad CF" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -295,11 +295,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Canal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Canal:" @@ -319,7 +319,7 @@ msgstr "Limpiar" msgid "Clear before scan" msgstr "Limpiar antes de buscar" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Borrar log" @@ -379,7 +379,7 @@ msgstr "Fecha" msgid "Delete" msgstr "Borrar" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Borrar entrada" @@ -387,7 +387,7 @@ msgstr "Borrar entrada" msgid "Delete failed!" msgstr "¡Falló el borrado!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Descripción" @@ -423,11 +423,11 @@ msgstr "Repetir DiSEqC" msgid "Disable" msgstr "Desabilitar" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Desactivar PiP" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -468,7 +468,7 @@ msgstr "" "¿Quieres hacer un backup ahora?\n" "Después de pulsar OK, por favor espere!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "¿Quieres continuar esta reproducción?" @@ -527,11 +527,11 @@ msgstr "Activar 5V para la antena activa" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Fin" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "HoraFin" @@ -541,7 +541,7 @@ msgstr "HoraFin" msgid "English" msgstr "Inglés" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Entra al menú principal..." @@ -583,7 +583,7 @@ msgstr "Francés" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frecuencia" @@ -593,8 +593,8 @@ msgstr "Frecuencia" msgid "Fri" msgstr "Vie" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Viernes" @@ -646,8 +646,8 @@ msgstr "Disco duro" msgid "Hierarchy mode" msgstr "Modo jerárquico" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "¿Cuántos minutos quiere grabar?" @@ -685,7 +685,11 @@ msgstr "Inicializar" msgid "Initializing Harddisk..." msgstr "Inicializando Disco duro..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Entrada" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Grabación instantánea..." @@ -725,7 +729,7 @@ msgstr "Selección de Idioma" msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Izda" @@ -769,16 +773,16 @@ msgstr "Modulación" msgid "Mon" msgstr "Lun" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Lun-Vie" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Lunes" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Mover PiP" @@ -814,7 +818,7 @@ msgstr "N/D" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nombre" @@ -835,7 +839,7 @@ msgstr "Escanear red" msgid "New" msgstr "Nuevo" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -851,11 +855,11 @@ msgstr "Siguiente" msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "¡HDD no encontrado o no inicializado!" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "No hay info del evento, grabando indefinidamente." @@ -896,7 +900,7 @@ msgstr "" "Nada a buscar!\n" "Por favor ponga la configuración del sintonizador antes de buscar un canal." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -922,7 +926,7 @@ msgstr "Actualización-Online" msgid "Packet management" msgstr "Manejo de paquete" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -934,7 +938,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Reproducir películas grabadas..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Por favor, elija una extensión..." @@ -946,7 +950,7 @@ msgstr "Introduzca un nombre para la nueva lista" msgid "Please enter a name for the new marker" msgstr "Pon un nombre para el nuevo marcador" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -954,11 +958,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Por fafor selecciona un subservicio a grabar..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Por favor, selecciona un subservicio..." @@ -1059,7 +1063,7 @@ msgstr "Proveedores" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "Zapeo rápido" @@ -1083,7 +1087,7 @@ msgstr "¿Quieres salir del zapeo rápido de subservicios?" msgid "Recording" msgstr "Grabando" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1099,7 +1103,7 @@ msgstr "Borrar Plugins" msgid "Remove plugins" msgstr "Borrar plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Tipo de repetición" @@ -1116,7 +1120,7 @@ msgstr "Resetear" msgid "Restore" msgstr "Restaurar" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Dcha" @@ -1138,8 +1142,8 @@ msgstr "Satélite" msgid "Satellites" msgstr "Satélites" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Sábado" @@ -1156,15 +1160,15 @@ msgstr "Buscar este" msgid "Search west" msgstr "Buscar oeste" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Seleccionar modo audio" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Seleccionar pista de audio" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Seleccione canal del que grabar" @@ -1253,15 +1257,15 @@ msgstr "Sur" msgid "Spanish" msgstr "Español" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Inicio" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "¿Iniciar grabación?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "HoraInicio" @@ -1277,7 +1281,7 @@ msgstr "Paso este" msgid "Step west" msgstr "Paso oeste" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stéreo" @@ -1288,7 +1292,7 @@ msgstr "Stéreo" msgid "Stop" msgstr "Parar" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "¿Parar grabación de pausa?" @@ -1304,7 +1308,7 @@ msgstr "Almacenar posición" msgid "Stored position" msgstr "Posición almacenada" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Lista de subservicios..." @@ -1313,12 +1317,12 @@ msgstr "Lista de subservicios..." msgid "Sun" msgstr "Dom" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Domingo" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1326,11 +1330,11 @@ msgstr "" msgid "Swedish" msgstr "Sueco" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Cambiar al subservicio siguiente" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Cambiar al subservicio anterior" @@ -1353,8 +1357,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1375,8 +1379,8 @@ msgstr "Umbral" msgid "Thu" msgstr "Jue" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Jueves" @@ -1384,7 +1388,7 @@ msgstr "Jueves" msgid "Time" msgstr "Hora" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Tipo de grabación" @@ -1421,13 +1425,17 @@ msgstr "Transpondedor" msgid "Transpondertype" msgstr "Tipo de transporder" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Mar" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Martes" @@ -1502,7 +1510,7 @@ msgstr "Usar usals para este sat" msgid "User defined" msgstr "Definido por el usuario" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Ver teletexto..." @@ -1519,12 +1527,12 @@ msgstr "" msgid "Wed" msgstr "Mié" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Miércoles" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "DiaSemana" @@ -1545,6 +1553,10 @@ msgstr "Si" msgid "You cannot delete this!" msgstr "¡No puede borrar esto!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Tu seleccionaste un lista" @@ -1597,18 +1609,18 @@ msgstr "añadir fichero a la lista" msgid "add marker" msgstr "añadir marcador" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "añadir grabación (introduzca duración)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "añadir grabación (indefinidamente)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "añadir grabación (sólo evento actual)" @@ -1646,7 +1658,7 @@ msgstr "atrás" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "cambiar la grabación (duración)" @@ -1666,7 +1678,7 @@ msgstr "limpiar lista" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "continuar" @@ -1674,7 +1686,7 @@ msgstr "continuar" msgid "copy to favourites" msgstr "copiar a favoritos" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "diariamente" @@ -1690,12 +1702,12 @@ msgstr "borrar..." msgid "disable move mode" msgstr "inabilitar modo movimiento" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "no hacer nada" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "no grabar" @@ -1739,7 +1751,7 @@ msgstr "espacio libre en disco" msgid "full /etc directory" msgstr "todo el directorio /etc" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "ir a pausa profunda" @@ -1763,7 +1775,7 @@ msgstr "iniciar módulo" msgid "leave movie player..." msgstr "salir del reproductor de películas..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "izquierda" @@ -1785,15 +1797,19 @@ msgstr "" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "canal siguiente" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "canal siguiente en historia" @@ -1830,7 +1846,7 @@ msgstr "" msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "una vez" @@ -1838,15 +1854,15 @@ msgstr "una vez" msgid "only /etc/enigma2 directory" msgstr "solo el directorio /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "abrir lista de servicios" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "abrir lista de servicios(abajo)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "abrir lista de servicios(arriba)" @@ -1854,7 +1870,7 @@ msgstr "abrir lista de servicios(arriba)" msgid "pass" msgstr "pasa" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "pausa" @@ -1862,15 +1878,15 @@ msgstr "pausa" msgid "please press OK when ready" msgstr "pulse OK cuando esté preparado" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "canal anterior" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "canal anterior en historia" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "grabar" @@ -1895,11 +1911,11 @@ msgstr "" msgid "remove new found flag" msgstr "borrar nueva marca encontrada" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "repetido" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "derecha" @@ -1945,6 +1961,10 @@ msgstr "estado de la búsqueda" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1953,11 +1973,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "mostrar EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "mostrar detalles del evento" @@ -1967,27 +1987,27 @@ msgstr "mostrar detalles del evento" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "saltar adelante" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "saltar atrás" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "comenzar pausa" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "stéreo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "parar grabación" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "parar pausa" @@ -2007,7 +2027,7 @@ msgstr "texto" msgid "this recording" msgstr "esta grabación" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2019,7 +2039,7 @@ msgstr "servicio desconocido" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "definido por el usuario" @@ -2027,7 +2047,7 @@ msgstr "definido por el usuario" msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "ver extensiones..." @@ -2043,7 +2063,7 @@ msgstr "" msgid "waiting" msgstr "esperando" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "semanalmente" @@ -2061,7 +2081,7 @@ msgstr "si" msgid "yes (keep feeds)" msgstr "si (conserva feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zapear" @@ -2478,10 +2498,6 @@ msgstr "Config LCD" msgid "No, scan later manually" msgstr "No, buscar más tarde manualmente" -#: ../data/ -msgid "Input" -msgstr "Entrada" - #: ../data/ msgid "Soundcarrier" msgstr "Portadora de sonido" diff --git a/po/fi.po b/po/fi.po index b88dc762..05cd79aa 100755 --- a/po/fi.po +++ b/po/fi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-07-20 23:11+0200\n" "Last-Translator: Sauli Halttu \n" "Language-Team: none\n" @@ -32,8 +32,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%m.%Y" @@ -116,7 +116,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -148,7 +148,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Käynnistä Kuva Kuvassa-toiminto" @@ -169,7 +169,7 @@ msgstr "Lisää ajastin" msgid "Advanced" msgstr "Edistyneille" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Tapahtuman jälkeen" @@ -190,7 +190,7 @@ msgstr "Arabialainen" msgid "Artist:" msgstr "Artisti:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Äänivalinnat" @@ -260,7 +260,7 @@ msgstr "CF-Asema" msgid "Cable" msgstr "Kaapeli" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -292,11 +292,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanava:" @@ -316,7 +316,7 @@ msgstr "Puhdista" msgid "Clear before scan" msgstr "Tyhjennä ennen hakua" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Tyhjennä loki" @@ -376,7 +376,7 @@ msgstr "Päiväys" msgid "Delete" msgstr "Poista" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Poista valinta" @@ -384,7 +384,7 @@ msgstr "Poista valinta" msgid "Delete failed!" msgstr "Poisto epäonnistui!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Kuvaus" @@ -420,11 +420,11 @@ msgstr "DiSEqC toistoja" msgid "Disable" msgstr "Pois" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Sulje Kuva Kuvassa-toiminto" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -465,7 +465,7 @@ msgstr "" "Haluatko varmasti luoda varmuuskopion?\n" "Paina OK ja odota!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -524,11 +524,11 @@ msgstr "Syötä 5V aktiiviselle antennille" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Lopeta" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Loppuaika" @@ -538,7 +538,7 @@ msgstr "Loppuaika" msgid "English" msgstr "Englantilainen" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Mene päävalikkoon..." @@ -580,7 +580,7 @@ msgstr "Ranskalainen" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Taajuus" @@ -590,8 +590,8 @@ msgstr "Taajuus" msgid "Fri" msgstr "Pe" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Perjantai" @@ -643,8 +643,8 @@ msgstr "Kiintolevy" msgid "Hierarchy mode" msgstr "Hierarkia-tila" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Kuinka monta minuuttia haluat tallentaa?" @@ -681,7 +681,11 @@ msgstr "Alusta" msgid "Initializing Harddisk..." msgstr "Alustetaan kiintolevyä..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Syöttö" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Välitön tallennus..." @@ -721,7 +725,7 @@ msgstr "Kielivalinta" msgid "Latitude" msgstr "leveysaste" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Vasen" @@ -765,16 +769,16 @@ msgstr "Modulaatio" msgid "Mon" msgstr "Ma" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Ma-Pe" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Maanantai" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Siirrä Kuva Kuvassa-toimintoa" @@ -810,7 +814,7 @@ msgstr "Ei saatavilla" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nimi" @@ -831,7 +835,7 @@ msgstr "Verkkohaku" msgid "New" msgstr "Uusi" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -847,13 +851,13 @@ msgstr "Seuraava" msgid "No" msgstr "Ei" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Kiintolevyä ei löydy tai\n" "kiintolevy alustamaton." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Ohjelmatietoa ei löydy, tallennetaan ilman ohjelmatietoja." @@ -894,7 +898,7 @@ msgstr "" "Ei mitään haettavaa!\n" "Määritä virittimen asetukset ennen kanavahakua." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -920,7 +924,7 @@ msgstr "Online-päivitys" msgid "Packet management" msgstr "Pakettienhallinta" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -932,7 +936,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Toista tallennetut elokuvat..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Valitse laajennus..." @@ -944,7 +948,7 @@ msgstr "Anna uuden kanavanipun nimi" msgid "Please enter a name for the new marker" msgstr "Anna nimi uudelle merkille" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -952,11 +956,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Valitse tallennettava alipalvelu..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Valitse alipalvelu..." @@ -1057,7 +1061,7 @@ msgstr "Toimittajat" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1081,7 +1085,7 @@ msgstr "" msgid "Recording" msgstr "Tallennetaan" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1097,7 +1101,7 @@ msgstr "Poista lisäosia" msgid "Remove plugins" msgstr "Poista lisäosia" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Toiston tyyppi" @@ -1114,7 +1118,7 @@ msgstr "Resetoi" msgid "Restore" msgstr "Palauta" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Oikea" @@ -1136,8 +1140,8 @@ msgstr "Satelliitti" msgid "Satellites" msgstr "Satelliitit" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Lauantai" @@ -1154,15 +1158,15 @@ msgstr "Etsintä itään" msgid "Search west" msgstr "Etsintä länteen" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Valitse äänimuoto" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Valitse ääniraita" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Valitse tallennettava kanava" @@ -1251,15 +1255,15 @@ msgstr "Etelä" msgid "Spanish" msgstr "Espanjalainen" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Aloita" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Aloita tallennus?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Aloitusaika" @@ -1275,7 +1279,7 @@ msgstr "Askel itään" msgid "Step west" msgstr "Askel länteen" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stereo" @@ -1286,7 +1290,7 @@ msgstr "Stereo" msgid "Stop" msgstr "Pysäytä" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Pysäytä aikasiirto?" @@ -1302,7 +1306,7 @@ msgstr "Tallenna sijainti" msgid "Stored position" msgstr "Tallennettu sijainti" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Alipalvelulista..." @@ -1311,12 +1315,12 @@ msgstr "Alipalvelulista..." msgid "Sun" msgstr "Su" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Sunnuntai" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1324,11 +1328,11 @@ msgstr "" msgid "Swedish" msgstr "Ruotsalainen" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Vaihda seuraavaan alipalveluun" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Vaihda edelliseen alipalveluun" @@ -1351,8 +1355,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1373,8 +1377,8 @@ msgstr "Kynnys" msgid "Thu" msgstr "To" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Torstai" @@ -1382,7 +1386,7 @@ msgstr "Torstai" msgid "Time" msgstr "Aika" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Ajastimen tyyppi" @@ -1419,13 +1423,17 @@ msgstr "Transponderi" msgid "Transpondertype" msgstr "Transponderityyppi" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Ti" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Tiistai" @@ -1500,7 +1508,7 @@ msgstr "Käytä USALS tälle satelliitille" msgid "User defined" msgstr "Käyttäjän määrittelemä" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "näytä tekstitv..." @@ -1517,12 +1525,12 @@ msgstr "" msgid "Wed" msgstr "Ke" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Keskiviikko" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Viikonpäivä" @@ -1543,6 +1551,10 @@ msgstr "Kyllä" msgid "You cannot delete this!" msgstr "Et voi poistaa tätä!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Valitsit soittolistan" @@ -1595,18 +1607,18 @@ msgstr "lisää tiedosto soittolistalle" msgid "add marker" msgstr "lisää merkki" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "tallenna (syötä tallennuksen kesto)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "tallenna (jatkuva)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "tallenna (lopeta nykyisen ohjelman jälkeen)" @@ -1644,7 +1656,7 @@ msgstr "takaisin" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "muokkaa tallennusta (kesto)" @@ -1664,7 +1676,7 @@ msgstr "tyhjennä soittolista" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "jatka" @@ -1672,7 +1684,7 @@ msgstr "jatka" msgid "copy to favourites" msgstr "kopioi suosikkeihin" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "päivittäinen" @@ -1688,12 +1700,12 @@ msgstr "poista..." msgid "disable move mode" msgstr "poistu siirtotilasta" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "älä tee mitään" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "älä tallenna" @@ -1737,7 +1749,7 @@ msgstr "vapaata levytilaa" msgid "full /etc directory" msgstr "täysi /etc hakemisto" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "mene syvään valmiustilaan" @@ -1761,7 +1773,7 @@ msgstr "alusta moduuli" msgid "leave movie player..." msgstr "poistu elokuvatoistimesta..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "vasen" @@ -1783,15 +1795,19 @@ msgstr "manuaali" msgid "mins" msgstr "minuuttia" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "seuraava kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "seuraava kanava historiassa" @@ -1828,7 +1844,7 @@ msgstr "pois" msgid "on" msgstr "päällä" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "kerran" @@ -1836,15 +1852,15 @@ msgstr "kerran" msgid "only /etc/enigma2 directory" msgstr "vain /etc/enigma2 hakemisto" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "avaa palvelulista" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "avaa palvelulista(alaspäin)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "avaa palvelulista(ylöspäin)" @@ -1852,7 +1868,7 @@ msgstr "avaa palvelulista(ylöspäin)" msgid "pass" msgstr "hyväksytty" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "tauko" @@ -1860,15 +1876,15 @@ msgstr "tauko" msgid "please press OK when ready" msgstr "paina OK kun olet valmis" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "edellinen kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "edellinen kanava historiassa" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "tallenna" @@ -1893,11 +1909,11 @@ msgstr "" msgid "remove new found flag" msgstr "poista uusi kanava-lippu" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "toistuva" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "oikea" @@ -1943,6 +1959,10 @@ msgstr "haun tila" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1951,11 +1971,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "näytä EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "näytä ohjelman tarkemmat tiedot" @@ -1965,27 +1985,27 @@ msgstr "näytä ohjelman tarkemmat tiedot" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "siirry taaksepäin" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "siirry eteenpäin" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "aloita ajansiirto" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "lopeta tallennus" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "Pysäytä ajansiirto" @@ -2005,7 +2025,7 @@ msgstr "teksti" msgid "this recording" msgstr "tämä tallennus" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2017,7 +2037,7 @@ msgstr "tuntematon kanava" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "käyttäjän määrittelemä" @@ -2025,7 +2045,7 @@ msgstr "käyttäjän määrittelemä" msgid "vertical" msgstr "vertikaali" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "näytä laajennukset..." @@ -2041,7 +2061,7 @@ msgstr "" msgid "waiting" msgstr "odottaa" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "viikottainen" @@ -2059,7 +2079,7 @@ msgstr "kyllä" msgid "yes (keep feeds)" msgstr "kyllä (pidä feedit)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "vaihto" @@ -2476,10 +2496,6 @@ msgstr "LCD asetukset" msgid "No, scan later manually" msgstr "Ei, hae myöhemmin käsin" -#: ../data/ -msgid "Input" -msgstr "Syöttö" - #: ../data/ msgid "Soundcarrier" msgstr "Äänenkantoaalto" diff --git a/po/fr.po b/po/fr.po index 28019d58..1edbadff 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-06-13 18:14+0200\n" "Last-Translator: DonHora \n" "Language-Team: french\n" @@ -35,8 +35,8 @@ msgid "%d min" msgstr "%d min" # Ex : 25/12/2006 -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d/%m/%Y" @@ -119,7 +119,7 @@ msgstr "" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -151,7 +151,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Activer l'incrustation d'image" @@ -172,7 +172,7 @@ msgstr "Programmer" msgid "Advanced" msgstr "Avancé" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Après l'émission" @@ -193,7 +193,7 @@ msgstr "Arabe" msgid "Artist:" msgstr "Artiste :" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -263,7 +263,7 @@ msgstr "Lecteur CF" msgid "Cable" msgstr "Câble" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -295,11 +295,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Chaîne" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Chaîne : " @@ -320,7 +320,7 @@ msgstr "Nettoyage" msgid "Clear before scan" msgstr "Effacer avant de rechercher" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Effacer le journal" @@ -382,7 +382,7 @@ msgstr "Date" msgid "Delete" msgstr "Effacer" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Effacer l'entrée" @@ -390,7 +390,7 @@ msgstr "Effacer l'entrée" msgid "Delete failed!" msgstr "L'effacement a échoué !" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Description" @@ -427,11 +427,11 @@ msgstr "" msgid "Disable" msgstr "Désactiver" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Désactiver l'incrustation d'image" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -470,7 +470,7 @@ msgstr "" "Voulez-vous sauvegarder maintenant ?\n" "Après avoir appuyé sur OK, veuillez patienter !" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -529,11 +529,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Fin" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Fin" @@ -543,7 +543,7 @@ msgstr "Fin" msgid "English" msgstr "Anglais" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -586,7 +586,7 @@ msgstr "Français" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Fréquence" @@ -596,8 +596,8 @@ msgstr "Fréquence" msgid "Fri" msgstr "Ven" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Vendredi" @@ -651,8 +651,8 @@ msgstr "Disque dur" msgid "Hierarchy mode" msgstr "Hiérarchie" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Combien de minutes voulez-vous enregistrer ?" @@ -691,7 +691,11 @@ msgstr "Initialiser" msgid "Initializing Harddisk..." msgstr "Initialisation du disque sur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Entrée" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -731,7 +735,7 @@ msgstr "Sélection de la langue" msgid "Latitude" msgstr "Latitude" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Gauche" @@ -776,16 +780,16 @@ msgstr "Modulation" msgid "Mon" msgstr "Lun" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Lun-Ven" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Lundi" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Déplacer l'incrustation d'image" @@ -821,7 +825,7 @@ msgstr "N/A" msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nom" @@ -843,7 +847,7 @@ msgstr "Analyse du réseau" msgid "New" msgstr "Nouvelle" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -859,11 +863,11 @@ msgstr "Suivant" msgid "No" msgstr "Non" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "Aucun disque dur trouvé ou disque dur non initialisé !" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Aucune information trouvée sur l'émission, enregistre indéfiniment." @@ -905,7 +909,7 @@ msgstr "" "Rien à rechercher !\n" "Veuillez paramétrer votre tuner avant de démarrer une recherche de chaînes." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -931,7 +935,7 @@ msgstr "Mise à jour en ligne" msgid "Packet management" msgstr "Gestion des paquets" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -943,7 +947,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Lire les films enregistrés..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Veuillez choisir une extension..." @@ -955,7 +959,7 @@ msgstr "Veuillez entrer un nom pour le bouquet" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -964,12 +968,12 @@ msgid "Please enter the old pin code" msgstr "" # Sous-service ? -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Veuillez choisir un sous-service à enregistrer..." # Sous-service ? -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Veuillez choisir un sous-service..." @@ -1067,7 +1071,7 @@ msgstr "Fournisseurs" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1091,7 +1095,7 @@ msgstr "" msgid "Recording" msgstr "Enregistrement" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1107,7 +1111,7 @@ msgstr "Enlever des plugins" msgid "Remove plugins" msgstr "Enlever des plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Type de répétition" @@ -1124,7 +1128,7 @@ msgstr "Réinitialiser" msgid "Restore" msgstr "Restaurer" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Droite" @@ -1146,8 +1150,8 @@ msgstr "Satellite" msgid "Satellites" msgstr "Satellites" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Samedi" @@ -1164,15 +1168,15 @@ msgstr "Rechercher à l'est" msgid "Search west" msgstr "Rechercher à l'ouest" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Sélectionnez le mode audio" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Selectionnez la piste audio" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Sélectionnez la chaîne à enregistrer" @@ -1264,15 +1268,15 @@ msgstr "Sud" msgid "Spanish" msgstr "Espagnol" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Début" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Démarrer l'enregistrement ?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Début" @@ -1290,7 +1294,7 @@ msgstr "" msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stéréo" @@ -1301,7 +1305,7 @@ msgstr "Stéréo" msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Arrêter la pause du direct ?" @@ -1317,7 +1321,7 @@ msgstr "Enregistrer la position" msgid "Stored position" msgstr "Position enregistrée" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Liste des sous-services..." @@ -1326,12 +1330,12 @@ msgstr "Liste des sous-services..." msgid "Sun" msgstr "Dim" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Dimanche" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1340,12 +1344,12 @@ msgid "Swedish" msgstr "Suédois" # TODO : Vérifier subservice -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Basculer vers le sous-service suivant" # TODO : Vérifier subservice -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Basculer vers le sous-service précédent" @@ -1368,8 +1372,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1390,8 +1394,8 @@ msgstr "Seuil" msgid "Thu" msgstr "Jeu" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Jeudi" @@ -1399,7 +1403,7 @@ msgstr "Jeudi" msgid "Time" msgstr "Heure" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Type" @@ -1437,13 +1441,17 @@ msgstr "Transpondeur" msgid "Transpondertype" msgstr "Type de transpondeur" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Mar" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Mardi" @@ -1520,7 +1528,7 @@ msgstr "Utiliser USALS pour ce satellite" msgid "User defined" msgstr "Défini par l'utilisateur" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1538,13 +1546,13 @@ msgstr "O" msgid "Wed" msgstr "Mer" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Mercredi" # TODO: À vérifier -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Jours ouvrables" @@ -1565,6 +1573,10 @@ msgstr "Oui" msgid "You cannot delete this!" msgstr "Vous ne pouvez effacer ceci !" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1618,18 +1630,18 @@ msgstr "ajouter le fichier à la liste de lecture" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "ajout d'enregistrement (entrer la durée d'enregistrement)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "ajout d'enregistrement (indéfiniment)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "ajout d'enregistrement (arrêter après l'émission en cours)" @@ -1669,7 +1681,7 @@ msgstr "retour" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "modifier un enregistrement (durée)" @@ -1691,7 +1703,7 @@ msgstr "effacer la liste de lecture" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1699,7 +1711,7 @@ msgstr "" msgid "copy to favourites" msgstr "copier dans les favoris" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "quotidien" @@ -1715,12 +1727,12 @@ msgstr "effacer..." msgid "disable move mode" msgstr "désactiver le mode déplacement" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "ne rien faire" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "ne pas enregistrer" @@ -1764,7 +1776,7 @@ msgstr "espace disque libre" msgid "full /etc directory" msgstr "répertoire /etc entier" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "mettre en veille profonde" @@ -1788,7 +1800,7 @@ msgstr "initialiser le module" msgid "leave movie player..." msgstr "quitter le lecteur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "gauche" @@ -1810,15 +1822,19 @@ msgstr "manuel" msgid "mins" msgstr "min" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "chaîne suivante" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "chaîne suivante dans l'historique" @@ -1855,7 +1871,7 @@ msgstr "arrêt" msgid "on" msgstr "marche" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "une fois" @@ -1863,15 +1879,15 @@ msgstr "une fois" msgid "only /etc/enigma2 directory" msgstr "seulement le répertoire /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1879,7 +1895,7 @@ msgstr "" msgid "pass" msgstr "passe" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1887,16 +1903,16 @@ msgstr "" msgid "please press OK when ready" msgstr "veuillez appuyer sur OK quand vous êtes prêt(e)" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "chaîne précédente" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "chaîne précédente dans l'historique" # TODO: À vérifier -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "enregistre" @@ -1923,11 +1939,11 @@ msgstr "" msgid "remove new found flag" msgstr "enlever l'indicateur de nouvelle chaîne" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "répété" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "droite" @@ -1973,6 +1989,10 @@ msgstr "état de l'analyse" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1981,11 +2001,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "afficher le guide" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "afficher les détails de l'émission" @@ -1995,27 +2015,27 @@ msgstr "afficher les détails de l'émission" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "stéréo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "arrêter l'enregistrement" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -2035,7 +2055,7 @@ msgstr "texte" msgid "this recording" msgstr "cet enregistrement" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2047,7 +2067,7 @@ msgstr "chaîne inconnue" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "défini par l'utilisateur" @@ -2055,7 +2075,7 @@ msgstr "défini par l'utilisateur" msgid "vertical" msgstr "verticale" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -2071,7 +2091,7 @@ msgstr "" msgid "waiting" msgstr "en attente" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "hebdomadaire" @@ -2089,7 +2109,7 @@ msgstr "oui" msgid "yes (keep feeds)" msgstr "oui (garder les feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zap" @@ -2519,10 +2539,6 @@ msgstr "Paramétrage LCD" msgid "No, scan later manually" msgstr "Non, rechercher manuellement plus tard" -#: ../data/ -msgid "Input" -msgstr "Entrée" - #: ../data/ msgid "Soundcarrier" msgstr "Porteuse sonore" diff --git a/po/is.po b/po/is.po index 3b3e2f06..2faf9e32 100755 --- a/po/is.po +++ b/po/is.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Icelandin translation v.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-08-03 23:52-0000\n" "Last-Translator: Baldur Þór Sveinsson \n" "Language-Team: Polar Team \n" @@ -36,8 +36,8 @@ msgstr "\"?" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -120,7 +120,7 @@ msgstr "" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -152,7 +152,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Virkja Mynd í Mynd" @@ -173,7 +173,7 @@ msgstr "Bæta við tímastillingu" msgid "Advanced" msgstr "Sérfæði" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Eftir atriði" @@ -194,7 +194,7 @@ msgstr "Arabíska" msgid "Artist:" msgstr "Listmaður:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Hljóð stillingar..." @@ -264,7 +264,7 @@ msgstr "CF Drif" msgid "Cable" msgstr "Kapalkerfi" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -296,11 +296,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Rás" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Rás:" @@ -320,7 +320,7 @@ msgstr "Hreinsa" msgid "Clear before scan" msgstr "Eyða fyrir leit" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Tæma lista" @@ -380,7 +380,7 @@ msgstr "Dags" msgid "Delete" msgstr "Eyða" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Eyða innslætti" @@ -388,7 +388,7 @@ msgstr "Eyða innslætti" msgid "Delete failed!" msgstr "Tókst ekki að eyða!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Lýsing" @@ -424,11 +424,11 @@ msgstr "DiSEqC endurtekning" msgid "Disable" msgstr "Gera óvirkt" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Gera Mynd í Mynd óvirka" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -469,7 +469,7 @@ msgstr "" "Viltu taka afrit núna?\n" "Eftir að hafa ýtt á OK þá bíðið!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -528,11 +528,11 @@ msgstr "Kveikja á 5V fyrir loftnet með magnara" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Hætta" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "EndaTími" @@ -542,7 +542,7 @@ msgstr "EndaTími" msgid "English" msgstr "Enska" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Fara í aðal valmynd..." @@ -584,7 +584,7 @@ msgstr "Franska" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Tíðni" @@ -594,8 +594,8 @@ msgstr "Tíðni" msgid "Fri" msgstr "Fös" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Föstudagur" @@ -647,8 +647,8 @@ msgstr "Harður diskur" msgid "Hierarchy mode" msgstr "Flokkunar hamur" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Í hvað margar mínútur viltu taka upp?" @@ -686,7 +686,11 @@ msgstr "Frumstiling" msgid "Initializing Harddisk..." msgstr "Frumstilli harða disk" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Inntak" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Skyndi upptaka..." @@ -726,7 +730,7 @@ msgstr "Val tungumáls" msgid "Latitude" msgstr "Breiddargráða" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Vinstri" @@ -770,16 +774,16 @@ msgstr "Mótun" msgid "Mon" msgstr "Mán" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Mán-Fös" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Mánudagur" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Færa Mynd í Mynd" @@ -815,7 +819,7 @@ msgstr "Ekki til" msgid "NIM " msgstr "NIM" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nafn" @@ -836,7 +840,7 @@ msgstr "Leita netkerfið allt" msgid "New" msgstr "Nýtt" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -852,11 +856,11 @@ msgstr "Næsta" msgid "No" msgstr "Nei" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "Fann ekki harðan disk eða hann ekki formaður!" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Engar upplýsingar um atriði fundust, tek upp endalaust." @@ -897,7 +901,7 @@ msgstr "" "Ekkert til að leita!\n" "Stilltu inn móttakarann áður en að þú byrjar rása leit." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -923,7 +927,7 @@ msgstr "Uppfærsla frá neti" msgid "Packet management" msgstr "Pakka meðhöndlun" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -935,7 +939,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Spila uppteknar myndir..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Vinsamlega veldu viðbót.." @@ -947,7 +951,7 @@ msgstr "Settu inn nafn á nýjum rása vendi" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -955,11 +959,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Velja undirrás til að taka upp..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vinsamlega veldu undirrás..." @@ -1060,7 +1064,7 @@ msgstr "Sendendur" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1084,7 +1088,7 @@ msgstr "" msgid "Recording" msgstr "Upptaka" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1100,7 +1104,7 @@ msgstr "Taka út Innskot" msgid "Remove plugins" msgstr "Taka út innskot" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Gerð endurtekningar" @@ -1117,7 +1121,7 @@ msgstr "Endursetja" msgid "Restore" msgstr "Setja inn" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Hægri" @@ -1139,8 +1143,8 @@ msgstr "Gervihnöttur" msgid "Satellites" msgstr "Gervihnettir" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Laugardagur" @@ -1157,15 +1161,15 @@ msgstr "Leita austur" msgid "Search west" msgstr "Leita vestur" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Veldu hljóð stillingu" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Veldu hljóð rás" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Veldu rás til að taka upp frá" @@ -1254,15 +1258,15 @@ msgstr "Suður" msgid "Spanish" msgstr "Spænska" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Byrja" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Byrja upptöku?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Byrjunartími" @@ -1278,7 +1282,7 @@ msgstr "Skref austur" msgid "Step west" msgstr "Skref vestur" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Víðóma" @@ -1289,7 +1293,7 @@ msgstr "Víðóma" msgid "Stop" msgstr "Stopp" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Stoppa tímafærslu?" @@ -1305,7 +1309,7 @@ msgstr "Vista staðsetningu" msgid "Stored position" msgstr "Vistuð staða" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Listi undirrása..." @@ -1314,12 +1318,12 @@ msgstr "Listi undirrása..." msgid "Sun" msgstr "Sun" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Sunnudagur" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1327,11 +1331,11 @@ msgstr "" msgid "Swedish" msgstr "Sænskt" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Skipta á næstu undirrás" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Skipta á fyrri undirrás" @@ -1354,8 +1358,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1376,8 +1380,8 @@ msgstr "Mörk" msgid "Thu" msgstr "Fim" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Fimmtudagur" @@ -1385,7 +1389,7 @@ msgstr "Fimmtudagur" msgid "Time" msgstr "Tími" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Gerð Tímastillngar" @@ -1422,13 +1426,17 @@ msgstr "Sendir" msgid "Transpondertype" msgstr "Gerð sendis" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Þri" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Þriðjudagur" @@ -1503,7 +1511,7 @@ msgstr "Nota usals fyrir þennan hnött" msgid "User defined" msgstr "Stillt af notanda" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Skoða textavarp..." @@ -1520,12 +1528,12 @@ msgstr "W" msgid "Wed" msgstr "Mið" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Miðvikudagur" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Vikudagur" @@ -1546,6 +1554,10 @@ msgstr "Já" msgid "You cannot delete this!" msgstr "Þú getur ekki eytt þessu!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Þú valdir spilunarlista" @@ -1598,18 +1610,18 @@ msgstr "bæta skrá við spilunarlista" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "bæta við upptöku (stilla tíma á upptöku)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "bæta við upptöku (endalaus)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "bæta við upptöku (stoppa eftir núverandi atriði)" @@ -1647,7 +1659,7 @@ msgstr "til baka" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "breyta upptöku (tíma)" @@ -1667,7 +1679,7 @@ msgstr "hreinsa spilunarlista" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "halda áfram" @@ -1675,7 +1687,7 @@ msgstr "halda áfram" msgid "copy to favourites" msgstr "bæta við uppáhalds lista" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "daglega" @@ -1691,12 +1703,12 @@ msgstr "eyða...." msgid "disable move mode" msgstr "hætta í færslu stöðu" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "ekki gera neitt" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "ekki taka upp" @@ -1740,7 +1752,7 @@ msgstr "laust diskpláss" msgid "full /etc directory" msgstr "alla /etc möppuna" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "fara í djúpsvefn" @@ -1764,7 +1776,7 @@ msgstr "stilli einingu" msgid "leave movie player..." msgstr "hætta í spilara" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "vinstri" @@ -1786,15 +1798,19 @@ msgstr "handvirkt" msgid "mins" msgstr "mín" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "næsta rás" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "næsta rás í sögu" @@ -1831,7 +1847,7 @@ msgstr "af" msgid "on" msgstr "á" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "einu sinni" @@ -1839,15 +1855,15 @@ msgstr "einu sinni" msgid "only /etc/enigma2 directory" msgstr "bara /etc/enigma2 mappa" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "opna rása lista" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "opna rásalista (niður)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "opna rásalista (upp)" @@ -1855,7 +1871,7 @@ msgstr "opna rásalista (upp)" msgid "pass" msgstr "í lagi" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "pása" @@ -1863,15 +1879,15 @@ msgstr "pása" msgid "please press OK when ready" msgstr "vinsamlega ýtið á OK þegar tilbúið" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "fyrri rás" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "fyrri rás í sögu" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "taka upp" @@ -1896,11 +1912,11 @@ msgstr "" msgid "remove new found flag" msgstr "eyða merkingu um nýfundna rás" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "endurtekinn" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "hægri" @@ -1946,6 +1962,10 @@ msgstr "leitar staða" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1954,11 +1974,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "sýna EPG" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "sýna atriði nánar" @@ -1968,27 +1988,27 @@ msgstr "sýna atriði nánar" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "fara til baka" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "fara áfram" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "byrja lifandi pásu" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "víðóma" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "stoppa upptöku" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "stoppa lifandi pásu" @@ -2008,7 +2028,7 @@ msgstr "texti" msgid "this recording" msgstr "þessi upptaka" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2020,7 +2040,7 @@ msgstr "óþekkt rás" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "stillt af notanda" @@ -2028,7 +2048,7 @@ msgstr "stillt af notanda" msgid "vertical" msgstr "lóðrétt" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "skoða innskot" @@ -2044,7 +2064,7 @@ msgstr "" msgid "waiting" msgstr "bíð" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "vikulega" @@ -2062,7 +2082,7 @@ msgstr "já" msgid "yes (keep feeds)" msgstr "já (halda fæðirásum)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "stökk" @@ -2478,10 +2498,6 @@ msgstr "LCD uppsetning" msgid "No, scan later manually" msgstr "Nei, leita seinna handvirkt" -#: ../data/ -msgid "Input" -msgstr "Inntak" - #: ../data/ msgid "Soundcarrier" msgstr "Hljóðburðarbylgja" diff --git a/po/it.po b/po/it.po index 5c8cd951..9e742b0d 100755 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-04-01 02:52+0100\n" "Last-Translator: Musicbob \n" "Language-Team: none\n" @@ -37,8 +37,8 @@ msgstr "\"?" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -151,7 +151,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "" @@ -172,7 +172,7 @@ msgstr "Agg.Timer" msgid "Advanced" msgstr "Avanzato" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "" @@ -193,7 +193,7 @@ msgstr "Arabo" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -263,7 +263,7 @@ msgstr "" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -295,11 +295,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Canale" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Canale:" @@ -319,7 +319,7 @@ msgstr "Pulisci" msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Pulisci log" @@ -379,7 +379,7 @@ msgstr "" msgid "Delete" msgstr "Cancella" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Cancella dato" @@ -387,7 +387,7 @@ msgstr "Cancella dato" msgid "Delete failed!" msgstr "Cancellazione fallita." -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Descrizione" @@ -423,11 +423,11 @@ msgstr "Ripetizioni DiSEqC" msgid "Disable" msgstr "Disabilitato" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -466,7 +466,7 @@ msgstr "" "Vuoi effettuare il backup ora?\n" "Dopo aver premuto OK, attendi" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -525,11 +525,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Fine" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Orario Fine" @@ -539,7 +539,7 @@ msgstr "Orario Fine" msgid "English" msgstr "Inglese" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -581,7 +581,7 @@ msgstr "" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequenza" @@ -591,8 +591,8 @@ msgstr "Frequenza" msgid "Fri" msgstr "Ven" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Venerdi" @@ -644,8 +644,8 @@ msgstr "Hard Disk" msgid "Hierarchy mode" msgstr "Modo gerarchico" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Per quanti minuti vuoi registrare?" @@ -682,7 +682,11 @@ msgstr "Formatta" msgid "Initializing Harddisk..." msgstr "Formatto l'Hard Disk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -722,7 +726,7 @@ msgstr "Selezione della lingua" msgid "Latitude" msgstr "Latitudine" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -766,16 +770,16 @@ msgstr "Modulazione" msgid "Mon" msgstr "Lun" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Lun-Ven" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Lunedi" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "" @@ -811,7 +815,7 @@ msgstr "Non disponibile" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Nome" @@ -832,7 +836,7 @@ msgstr "Scansione Network" msgid "New" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -848,13 +852,13 @@ msgstr "Prossimo" msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Nessun Hard Disk trovato,\n" "oppure Hard Disk non inizializzato." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Nessuna info sulla durata dell'evento, registrazione illimitata." @@ -893,7 +897,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -919,7 +923,7 @@ msgstr "Aggiornamento in linea" msgid "Packet management" msgstr "Gestione Pacchetti" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -931,7 +935,7 @@ msgstr "" msgid "Play recorded movies..." msgstr " Vedi i programmi registrati..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "" @@ -943,7 +947,7 @@ msgstr "Inserisci un nome per il nuovo bouquet" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -951,11 +955,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -1053,7 +1057,7 @@ msgstr "Providers" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1077,7 +1081,7 @@ msgstr "" msgid "Recording" msgstr "Registrazione" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1093,7 +1097,7 @@ msgstr "Rimuovi Plugins" msgid "Remove plugins" msgstr "Rimuovi Plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Modo ripetizione" @@ -1110,7 +1114,7 @@ msgstr "Reset" msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1132,8 +1136,8 @@ msgstr "" msgid "Satellites" msgstr "Satelliti" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Sabato" @@ -1150,15 +1154,15 @@ msgstr "" msgid "Search west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Seleziona il canale da cui registrare" @@ -1247,15 +1251,15 @@ msgstr "Sud" msgid "Spanish" msgstr "Spagnolo" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Avvio" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Avviare la registrazione?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Orario Inizio" @@ -1271,7 +1275,7 @@ msgstr "Passo a est" msgid "Step west" msgstr "Passo a ovest" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1282,7 +1286,7 @@ msgstr "" msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Uscire dal Timeshift?" @@ -1298,7 +1302,7 @@ msgstr "Memorizza posizione" msgid "Stored position" msgstr "Posizione memorizzata" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "" @@ -1307,12 +1311,12 @@ msgstr "" msgid "Sun" msgstr "Dom" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Domenica" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1320,11 +1324,11 @@ msgstr "" msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "" @@ -1347,8 +1351,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1369,8 +1373,8 @@ msgstr "Soglia" msgid "Thu" msgstr "Gio" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Giovedi" @@ -1378,7 +1382,7 @@ msgstr "Giovedi" msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Tipo Timer" @@ -1415,13 +1419,17 @@ msgstr "" msgid "Transpondertype" msgstr "" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Mar" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Martedi" @@ -1496,7 +1504,7 @@ msgstr "Usa USALS per questo satellite" msgid "User defined" msgstr "Definito dall'utente" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1513,12 +1521,12 @@ msgstr "" msgid "Wed" msgstr "Mer" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Mercoledi" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Giorno" @@ -1539,6 +1547,10 @@ msgstr "Si" msgid "You cannot delete this!" msgstr "Non puoi cancellarlo!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1591,18 +1603,18 @@ msgstr "" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "Specifica durata registrazione" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "Registrazione illimitata" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "Registra fino al termine evento corrente" @@ -1640,7 +1652,7 @@ msgstr "indietro" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "cambia la durata registrazione" @@ -1660,7 +1672,7 @@ msgstr "" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1668,7 +1680,7 @@ msgstr "" msgid "copy to favourites" msgstr "copia nei preferiti" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "giornaliero" @@ -1684,12 +1696,12 @@ msgstr "cancella..." msgid "disable move mode" msgstr "Esci dalla modalità muovi" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "Non fare nulla" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "Esci, non registrare" @@ -1733,7 +1745,7 @@ msgstr "spazio libero sul disco" msgid "full /etc directory" msgstr "tutta la directory /etc" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "" @@ -1757,7 +1769,7 @@ msgstr "Inizializza il modulo" msgid "leave movie player..." msgstr "Esci dal lettore..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1779,15 +1791,19 @@ msgstr "manuale" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "prossimo canale" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "prossimo canale nella lista" @@ -1824,7 +1840,7 @@ msgstr "spento" msgid "on" msgstr "acceso" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "una volta" @@ -1832,15 +1848,15 @@ msgstr "una volta" msgid "only /etc/enigma2 directory" msgstr "solo la directory /etc/enigma" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1848,7 +1864,7 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1856,15 +1872,15 @@ msgstr "" msgid "please press OK when ready" msgstr "Premi OK quando pronto" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "canale precedente" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "canale precedente nella lista" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "registrazione" @@ -1889,11 +1905,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "ripetuto" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1939,6 +1955,10 @@ msgstr "Stato" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1947,11 +1967,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "Mostra EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "Mostra dettagli evento" @@ -1961,27 +1981,27 @@ msgstr "Mostra dettagli evento" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "Ferma la registrazione" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -2001,7 +2021,7 @@ msgstr "Testo" msgid "this recording" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2013,7 +2033,7 @@ msgstr "Canale sconosciuto" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "definito dall'utente" @@ -2021,7 +2041,7 @@ msgstr "definito dall'utente" msgid "vertical" msgstr "verticale" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -2037,7 +2057,7 @@ msgstr "" msgid "waiting" msgstr "attendo" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "settimanale" @@ -2055,7 +2075,7 @@ msgstr "si" msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "" @@ -2470,10 +2490,6 @@ msgstr "Impostazioni LCD" msgid "No, scan later manually" msgstr "No, non fare la ricerca canali ora." -#: ../data/ -msgid "Input" -msgstr "" - #: ../data/ msgid "Soundcarrier" msgstr "Portante suono" diff --git a/po/nl.po b/po/nl.po index bc1d374c..d25ec698 100755 --- a/po/nl.po +++ b/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-07-26 18:56+0100\n" "Last-Translator: Kees Aerts \n" "Language-Team: none\n" @@ -38,8 +38,8 @@ msgstr "" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -122,7 +122,7 @@ msgstr "" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -154,7 +154,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Activeer PIP" @@ -175,7 +175,7 @@ msgstr "Timerinstellen" msgid "Advanced" msgstr "Expert" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "na gebeurtenis" @@ -196,7 +196,7 @@ msgstr "Arabisch" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Audio Opties..." @@ -266,7 +266,7 @@ msgstr "CF Drive" msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -298,11 +298,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanaal:" @@ -322,7 +322,7 @@ msgstr "Opruimen" msgid "Clear before scan" msgstr "Maak scoon, Voor start zoeken" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Log Wissen" @@ -382,7 +382,7 @@ msgstr "Datum" msgid "Delete" msgstr "Verwijderen" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Verwijder Invoer" @@ -390,7 +390,7 @@ msgstr "Verwijder Invoer" msgid "Delete failed!" msgstr "Verwijderen mislukt." -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Beschrijving" @@ -426,11 +426,11 @@ msgstr "DiSEqC Herhaling" msgid "Disable" msgstr "Uit" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Deactiveer PIP" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -471,7 +471,7 @@ msgstr "" "wilt u nu een backup maken?\n" "Druk op OK, en wacht een moment!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -530,11 +530,11 @@ msgstr "5V aan voor aktieve Antenne" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Einde" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Eindtijd" @@ -544,7 +544,7 @@ msgstr "Eindtijd" msgid "English" msgstr "Engels" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Ga naar hoofd menu..." @@ -586,7 +586,7 @@ msgstr "Frans" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequentie" @@ -596,8 +596,8 @@ msgstr "Frequentie" msgid "Fri" msgstr "Vr" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Vrijdag" @@ -649,8 +649,8 @@ msgstr "Harddisk" msgid "Hierarchy mode" msgstr "Hierarchy mode" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Hoeveel minuten wilt u opnemen?" @@ -687,7 +687,11 @@ msgstr "Format HDD" msgid "Initializing Harddisk..." msgstr "Formatting Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Invoer" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Directe Opname..." @@ -727,7 +731,7 @@ msgstr "Taal Keuze" msgid "Latitude" msgstr "Breedtegraad" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Links" @@ -771,16 +775,16 @@ msgstr "Modulatie" msgid "Mon" msgstr "Ma" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Maandag tot Vrijdag" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Maandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Verplaats Picture in Picture" @@ -816,7 +820,7 @@ msgstr "Niet Aanwezig" msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Naam" @@ -837,7 +841,7 @@ msgstr "Netwerk zoeken" msgid "New" msgstr "Nieuw" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -853,13 +857,13 @@ msgstr "Volgende" msgid "No" msgstr "Nee" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Geen Harddisk gevonden of\n" "Hardisk is niet Geformateerd." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Geen EPG-DATA gevonden, Start onbegrensde opname." @@ -900,7 +904,7 @@ msgstr "" "Niks Gevonden!\n" "Stel u tuner settings in aub voor u een zoek opdracht geeft." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -926,7 +930,7 @@ msgstr "Online-Upgrade" msgid "Packet management" msgstr "Pakket beheer" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -938,7 +942,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Opgenomen film afspelen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Kies een extension aub..." @@ -950,7 +954,7 @@ msgstr "Voer naam in voor nieuw boeket" msgid "Please enter a name for the new marker" msgstr "Geef aub een naam in voor de nieuwe Marker" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -958,11 +962,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "selecteer een subservice voor opname aub..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "selecteer een subservice aub..." @@ -1063,7 +1067,7 @@ msgstr "Providers" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1087,7 +1091,7 @@ msgstr "" msgid "Recording" msgstr "Opnemen" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1103,7 +1107,7 @@ msgstr "Verwijder Plugins" msgid "Remove plugins" msgstr "Verwijder plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Herhaal Type" @@ -1120,7 +1124,7 @@ msgstr "Reset" msgid "Restore" msgstr "Restore" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Rechts" @@ -1142,8 +1146,8 @@ msgstr "Satelliet" msgid "Satellites" msgstr "Satellieten" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Zaterdag" @@ -1160,15 +1164,15 @@ msgstr "Zoek oost" msgid "Search west" msgstr "Zoek west" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Kies audio modus" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Kies audio spoor" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Selecteer een kanaal waarvan u wilt opnemen" @@ -1257,15 +1261,15 @@ msgstr "Zuid" msgid "Spanish" msgstr "Spaans" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Start Opnemen?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Startijd" @@ -1281,7 +1285,7 @@ msgstr "Stap naar oost" msgid "Step west" msgstr "Stap naar west" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1292,7 +1296,7 @@ msgstr "" msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Timeshift Stoppen?" @@ -1308,7 +1312,7 @@ msgstr "Sla positie op" msgid "Stored position" msgstr "Opgeslagen positie" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Subservice lijst..." @@ -1317,12 +1321,12 @@ msgstr "Subservice lijst..." msgid "Sun" msgstr "Zo" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Zondag" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1330,11 +1334,11 @@ msgstr "" msgid "Swedish" msgstr "Zweeds" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Ga naar volgende subservice" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Ga naar vorige subservice" @@ -1357,8 +1361,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1379,8 +1383,8 @@ msgstr "Drempel" msgid "Thu" msgstr "Do" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Donderdag" @@ -1388,7 +1392,7 @@ msgstr "Donderdag" msgid "Time" msgstr "Tijd" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Timer-Type" @@ -1425,13 +1429,17 @@ msgstr "Transponder" msgid "Transpondertype" msgstr "Transponder type" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Di" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Dinsdag" @@ -1506,7 +1514,7 @@ msgstr "Gebruik USALS voor deze Sat" msgid "User defined" msgstr "Gebruikers mode" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Laat teletext zien..." @@ -1523,12 +1531,12 @@ msgstr "W" msgid "Wed" msgstr "Wo" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Woensdag" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Weekdag" @@ -1549,6 +1557,10 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "U kunt dit niet wissen." +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "U heeft een afspeel lijst gekozen" @@ -1601,18 +1613,18 @@ msgstr "Voeg file toe aan afspeellijst" msgid "add marker" msgstr "Marker invoegen" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "Voeg opname toe (geef opnametijd aan)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "Voeg opname toe (direkt)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "Voeg opname toe (stop na huidigge opname)" @@ -1650,7 +1662,7 @@ msgstr "Terug" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "Verander opname (Tijdsduur)" @@ -1670,7 +1682,7 @@ msgstr "Maak afspeellijst leeg" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "Ga Verder" @@ -1678,7 +1690,7 @@ msgstr "Ga Verder" msgid "copy to favourites" msgstr "Naar favorieten copieeren" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "Dagelijks" @@ -1694,12 +1706,12 @@ msgstr "Verwijderen..." msgid "disable move mode" msgstr "Verplaats modus uitzetten" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "doe niks" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "niet opnemen" @@ -1743,7 +1755,7 @@ msgstr "Vrije ruimte op Harddisk:" msgid "full /etc directory" msgstr "komplete /etc directory" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "Box Uitzetten" @@ -1767,7 +1779,7 @@ msgstr "Ci-Module initializeren" msgid "leave movie player..." msgstr "Afspelen stoppen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "links" @@ -1789,15 +1801,19 @@ msgstr "Handmatig" msgid "mins" msgstr "min" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "Volgende Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "zet volgend kanaal in historie" @@ -1834,7 +1850,7 @@ msgstr "uit" msgid "on" msgstr "aan" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "Eenmalig" @@ -1842,15 +1858,15 @@ msgstr "Eenmalig" msgid "only /etc/enigma2 directory" msgstr "alleen /etc/enigma2 directory" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "open kanaal lijst" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "open kanaal lijst(naar beneden)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "open kanaal lijst(naar boven)" @@ -1858,7 +1874,7 @@ msgstr "open kanaal lijst(naar boven)" msgid "pass" msgstr "Passage" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "Pause" @@ -1866,15 +1882,15 @@ msgstr "Pause" msgid "please press OK when ready" msgstr "Wanneer klaar druk O.K aub." -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "Vorig Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "zet vorig kanaal in historie" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "opnemen" @@ -1899,11 +1915,11 @@ msgstr "" msgid "remove new found flag" msgstr "verwijder nieuw gevonden found flag" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "Herhalen" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "rechts" @@ -1949,6 +1965,10 @@ msgstr "Status" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1957,11 +1977,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "laat EPG zien..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "laat EPG details zien" @@ -1971,27 +1991,27 @@ msgstr "laat EPG details zien" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "Acteruit spoelen" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "Vooruit spoelen" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "Timeshift starten" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "stop opname" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "Timeshift stoppen" @@ -2011,7 +2031,7 @@ msgstr "Text" msgid "this recording" msgstr "deze opname" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2023,7 +2043,7 @@ msgstr "onbekende Service" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "gebruikers mode" @@ -2031,7 +2051,7 @@ msgstr "gebruikers mode" msgid "vertical" msgstr "vertikaal" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "Laat extensies zien..." @@ -2047,7 +2067,7 @@ msgstr "" msgid "waiting" msgstr "wachten" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "wekelijks" @@ -2065,7 +2085,7 @@ msgstr "ja" msgid "yes (keep feeds)" msgstr "ja (bewaar feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zap" @@ -2485,10 +2505,6 @@ msgstr "LCD instellingen" msgid "No, scan later manually" msgstr "Nee, Later zoeken." -#: ../data/ -msgid "Input" -msgstr "Invoer" - #: ../data/ msgid "Soundcarrier" msgstr "Geluids kanaal" diff --git a/po/no.po b/po/no.po index 6d0d4b12..9d9e3afb 100755 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-04-24 17:15+0100\n" "Last-Translator: MMMMMM \n" "Language-Team: none\n" @@ -37,8 +37,8 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -119,7 +119,7 @@ msgstr "" msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -149,7 +149,7 @@ msgstr "" msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "" @@ -170,7 +170,7 @@ msgstr "Legge til timer" msgid "Advanced" msgstr "Avansert" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "" @@ -191,7 +191,7 @@ msgstr "Arabisk" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Cable" msgstr "" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -293,11 +293,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanal:" @@ -317,7 +317,7 @@ msgstr "Opprydning" msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Tøm log" @@ -377,7 +377,7 @@ msgstr "" msgid "Delete" msgstr "Slette" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Slett timer" @@ -385,7 +385,7 @@ msgstr "Slett timer" msgid "Delete failed!" msgstr "Sletting feilet." -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Beskrivelse" @@ -421,11 +421,11 @@ msgstr "" msgid "Disable" msgstr "Slå av" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -462,7 +462,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -521,11 +521,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Avslutte" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Slutttid" @@ -535,7 +535,7 @@ msgstr "Slutttid" msgid "English" msgstr "Engelsk" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -577,7 +577,7 @@ msgstr "" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekvens" @@ -587,8 +587,8 @@ msgstr "Frekvens" msgid "Fri" msgstr "Fre" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Fredag" @@ -640,8 +640,8 @@ msgstr "Harddisk" msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Hvor mange minutter vil du ta opp?" @@ -678,7 +678,11 @@ msgstr "Initialiser" msgid "Initializing Harddisk..." msgstr "Initialiserer Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -718,7 +722,7 @@ msgstr "Språkvalg" msgid "Latitude" msgstr "Breddegrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -762,16 +766,16 @@ msgstr "" msgid "Mon" msgstr "Man" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Man-Fre" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Mandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "" @@ -807,7 +811,7 @@ msgstr "Ikke tilgjengelig" msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Navn" @@ -828,7 +832,7 @@ msgstr "Nettverkssøk" msgid "New" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -844,13 +848,13 @@ msgstr "Neste" msgid "No" msgstr "Nei" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "" "Ingen harddisk funnet eller\n" "Harddisk ikke initialisert." -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Ingen EPG-data funnet. Start ubgrenset opptak." @@ -889,7 +893,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -915,7 +919,7 @@ msgstr "" msgid "Packet management" msgstr "Pakkeforvaltning" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -927,7 +931,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Spill av filmopptak..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "" @@ -939,7 +943,7 @@ msgstr "Vennligst skriv navn for den nye bouquet" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -947,11 +951,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -1049,7 +1053,7 @@ msgstr "Tilbydere" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1073,7 +1077,7 @@ msgstr "" msgid "Recording" msgstr "Opptak" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1089,7 +1093,7 @@ msgstr "Fjern Plugins" msgid "Remove plugins" msgstr "Fjern plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "" @@ -1106,7 +1110,7 @@ msgstr "Tilbakestill" msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1128,8 +1132,8 @@ msgstr "Satellit" msgid "Satellites" msgstr "Satelliter" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Lørdag" @@ -1146,15 +1150,15 @@ msgstr "" msgid "Search west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Velg kanal å ta opp fra" @@ -1240,15 +1244,15 @@ msgstr "Sør" msgid "Spanish" msgstr "Spansk" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Start opptak?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "StartTid" @@ -1264,7 +1268,7 @@ msgstr "Steg øst" msgid "Step west" msgstr "Steg vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1275,7 +1279,7 @@ msgstr "" msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Stopp Timeshift?" @@ -1291,7 +1295,7 @@ msgstr "Lagret posisjon" msgid "Stored position" msgstr "Lagret posisjon" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "" @@ -1300,12 +1304,12 @@ msgstr "" msgid "Sun" msgstr "Søn" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Søndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1313,11 +1317,11 @@ msgstr "" msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "" @@ -1340,8 +1344,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1362,8 +1366,8 @@ msgstr "Grense" msgid "Thu" msgstr "Tor" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Torsdag" @@ -1371,7 +1375,7 @@ msgstr "Torsdag" msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Timer Type" @@ -1408,13 +1412,17 @@ msgstr "" msgid "Transpondertype" msgstr "" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Tir" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Tirsdag" @@ -1489,7 +1497,7 @@ msgstr "Bruk USALS for denne Sat" msgid "User defined" msgstr "Brukerdefinert" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1506,12 +1514,12 @@ msgstr "" msgid "Wed" msgstr "Ons" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Onsdag" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Ukedag" @@ -1532,6 +1540,10 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Du kan ikke slette denne!." +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1584,18 +1596,18 @@ msgstr "" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "" @@ -1631,7 +1643,7 @@ msgstr "Tilbake" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "" @@ -1651,7 +1663,7 @@ msgstr "" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1659,7 +1671,7 @@ msgstr "" msgid "copy to favourites" msgstr "Kopier til favoritter" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "Daglig" @@ -1675,12 +1687,12 @@ msgstr "Slette..." msgid "disable move mode" msgstr "Slå av flyttemodus" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "gjør ingenting" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "Ikke ta opp" @@ -1724,7 +1736,7 @@ msgstr "Ledig diskplass" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "" @@ -1748,7 +1760,7 @@ msgstr "Initialisere modul" msgid "leave movie player..." msgstr "Forlat filmavspiller..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1770,15 +1782,19 @@ msgstr "Manuell" msgid "mins" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "Neste kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "" @@ -1815,7 +1831,7 @@ msgstr "Av" msgid "on" msgstr "På" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "En gang" @@ -1823,15 +1839,15 @@ msgstr "En gang" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1839,7 +1855,7 @@ msgstr "" msgid "pass" msgstr "Gjennomgang" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1847,15 +1863,15 @@ msgstr "" msgid "please press OK when ready" msgstr "Trykk OK når det er klart" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "Forrige kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "" @@ -1880,11 +1896,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "Gjentatt" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1930,6 +1946,10 @@ msgstr "SøkeStatus" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1938,11 +1958,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "Vis EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "Vis sendingdetaljer" @@ -1952,27 +1972,27 @@ msgstr "Vis sendingdetaljer" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "stopp opptak" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -1992,7 +2012,7 @@ msgstr "Tekst" msgid "this recording" msgstr "" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2004,7 +2024,7 @@ msgstr "Ukjent kanal" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "Brukerdefinert" @@ -2012,7 +2032,7 @@ msgstr "Brukerdefinert" msgid "vertical" msgstr "Vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -2028,7 +2048,7 @@ msgstr "" msgid "waiting" msgstr "venter" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "Ukentlig" @@ -2046,7 +2066,7 @@ msgstr "Ja" msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "" @@ -2459,10 +2479,6 @@ msgstr "LCD Instillinger" msgid "No, scan later manually" msgstr "Nei, søk manuelt senere." -#: ../data/ -msgid "Input" -msgstr "" - #: ../data/ msgid "Soundcarrier" msgstr "Tonebærer" diff --git a/po/sv.po b/po/sv.po index f9cd4a53..5ad92d69 100755 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-08-10 11:35+0100\n" "Last-Translator: WeeGull \n" "Language-Team: none\n" @@ -37,8 +37,8 @@ msgstr "\"?" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -121,7 +121,7 @@ msgstr "??" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -151,7 +151,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Aktivera Bild i Bild" @@ -172,7 +172,7 @@ msgstr "Lägg till timer" msgid "Advanced" msgstr "Avancerat" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Efter program" @@ -193,7 +193,7 @@ msgstr "Arabiska" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "Ljud optioner..." @@ -263,7 +263,7 @@ msgstr "CF Disk" msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -295,11 +295,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanal:" @@ -319,7 +319,7 @@ msgstr "Rensa" msgid "Clear before scan" msgstr "Rensa före sökning" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Rensa log" @@ -379,7 +379,7 @@ msgstr "Datum" msgid "Delete" msgstr "Ta bort" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Ta bort post" @@ -387,7 +387,7 @@ msgstr "Ta bort post" msgid "Delete failed!" msgstr "Borttagning misslyckades!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Beskrivning" @@ -423,11 +423,11 @@ msgstr "DiSEqC repetetioner" msgid "Disable" msgstr "Avaktivera" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Avaktivera Bild i Bild" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -468,7 +468,7 @@ msgstr "" "Vill du ta en backup nu?\n" "Tryck OK och vänligen vänta!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "Vill du återuppta uppspelningen?" @@ -527,11 +527,11 @@ msgstr "Aktivera 5V för aktiv antenn" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Slut" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "SlutTid" @@ -541,7 +541,7 @@ msgstr "SlutTid" msgid "English" msgstr "Engelska" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "Gå till huvudmeny" @@ -583,7 +583,7 @@ msgstr "Franska" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekvens" @@ -593,8 +593,8 @@ msgstr "Frekvens" msgid "Fri" msgstr "Fre" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Fredag" @@ -646,8 +646,8 @@ msgstr "Hårddisk" msgid "Hierarchy mode" msgstr "Hierarkiskt läge" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Hur många minuter vill du spela in?" @@ -684,7 +684,11 @@ msgstr "Initiera" msgid "Initializing Harddisk..." msgstr "Initierar Hårddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Ingång" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "Direkt inspelning..." @@ -724,7 +728,7 @@ msgstr "Välj språk" msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "Vänster" @@ -768,16 +772,16 @@ msgstr "Modulering" msgid "Mon" msgstr "Mån" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Mån-Fre" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Måndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Flytta Bild i Bild" @@ -813,7 +817,7 @@ msgstr "Inte Tillgänglig" msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "Namn" @@ -834,7 +838,7 @@ msgstr "Sök Nätverk" msgid "New" msgstr "Ny" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -850,11 +854,11 @@ msgstr "Nästa" msgid "No" msgstr "Nej" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "Ingen hårddisk funnen eller initialiserad!" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Ingen programinfo hittades, inspelning oändlig." @@ -895,7 +899,7 @@ msgstr "" "Inget att scanna!\n" "Vänligen konfigurera tuner före scanning efter kanaler." -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -921,7 +925,7 @@ msgstr "Online Uppgradering" msgid "Packet management" msgstr "Pakethantering" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -933,7 +937,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Spela inspelade filmer..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Vänligen välj en utökning..." @@ -945,7 +949,7 @@ msgstr "Ange namn för den nya bouquet" msgid "Please enter a name for the new marker" msgstr "Vänligen ange namn för ny markör" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -953,11 +957,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Vänligen välj en underkanal för inspelning..." -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vänligen välj en underkanal..." @@ -1059,7 +1063,7 @@ msgstr "Leverantörer" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "Quickzap" @@ -1083,7 +1087,7 @@ msgstr "Verkligen avsluta underkanals quickzap?" msgid "Recording" msgstr "Spelar in" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1099,7 +1103,7 @@ msgstr "Ta bort Plugins" msgid "Remove plugins" msgstr "Ta bort plugins" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Repeat Typ" @@ -1116,7 +1120,7 @@ msgstr "Nollställ" msgid "Restore" msgstr "Återställ" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "Höger" @@ -1138,8 +1142,8 @@ msgstr "Satellit" msgid "Satellites" msgstr "Satelliter" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Lördag" @@ -1156,15 +1160,15 @@ msgstr "Sök öst" msgid "Search west" msgstr "Sök väst" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "Välj ljudläge" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Välj ljudspår" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Välj kanal att spela in från" @@ -1253,15 +1257,15 @@ msgstr "Syd" msgid "Spanish" msgstr "Spanska" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Starta inspelning?" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "StartTid" @@ -1277,7 +1281,7 @@ msgstr "Stega öst" msgid "Step west" msgstr "Stega väst" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "Stereo" @@ -1288,7 +1292,7 @@ msgstr "Stereo" msgid "Stop" msgstr "Stopp" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Stoppa Timeshift?" @@ -1304,7 +1308,7 @@ msgstr "Lagra position" msgid "Stored position" msgstr "Lagrad position" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Underkanalslista..." @@ -1313,12 +1317,12 @@ msgstr "Underkanalslista..." msgid "Sun" msgstr "Sön" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Söndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1326,11 +1330,11 @@ msgstr "" msgid "Swedish" msgstr "Svenska" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Byt till nästa underkanal" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Byt till föregående underkanal" @@ -1353,8 +1357,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1375,8 +1379,8 @@ msgstr "Gränsvärde" msgid "Thu" msgstr "Tors" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Torsdag" @@ -1384,7 +1388,7 @@ msgstr "Torsdag" msgid "Time" msgstr "Tid" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Timertyp" @@ -1421,13 +1425,17 @@ msgstr "Transponder" msgid "Transpondertype" msgstr "Transponertyp" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Tis" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Tisdag" @@ -1502,7 +1510,7 @@ msgstr "Använd USALS för denna sat" msgid "User defined" msgstr "Användardefinierat" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "Visa teletext..." @@ -1519,12 +1527,12 @@ msgstr "V" msgid "Wed" msgstr "Ons" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Onsdag" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Veckodag" @@ -1545,6 +1553,10 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Du kan inte ta bort detta!" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Du valde en spellista" @@ -1597,18 +1609,18 @@ msgstr "lägg till fil i playlist" msgid "add marker" msgstr "lägg till markör" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "lägg till inspelning (ange inspelningslängd)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "lägg till inspelning (oändlig)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "lägg till inspelning (avsluta efter nuvarande)" @@ -1646,7 +1658,7 @@ msgstr "tillbaka" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "ändra inspelning (längd)" @@ -1666,7 +1678,7 @@ msgstr "rensa playlist" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "forsätt" @@ -1674,7 +1686,7 @@ msgstr "forsätt" msgid "copy to favourites" msgstr "kopiera till favoriter" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "daglig" @@ -1690,12 +1702,12 @@ msgstr "ta bort..." msgid "disable move mode" msgstr "avaktivera flyttläge" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "gör inget" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "spela inte in" @@ -1739,7 +1751,7 @@ msgstr "ledigt diskutrymme" msgid "full /etc directory" msgstr "fullt /etc bibliotek" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "Stäng av mottagaren" @@ -1763,7 +1775,7 @@ msgstr "initialisera modul" msgid "leave movie player..." msgstr "lämna videospelare..." -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "vänster" @@ -1785,15 +1797,19 @@ msgstr "manuell" msgid "mins" msgstr "min" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "nästa kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "nästa kanal i historiken" @@ -1830,7 +1846,7 @@ msgstr "av" msgid "on" msgstr "på" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "en gång" @@ -1838,15 +1854,15 @@ msgstr "en gång" msgid "only /etc/enigma2 directory" msgstr "bara /etc/enigma2 bibliotek" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "öppna kanallista" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "öppna kanallista(ner)" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "öppna kanallista(upp)" @@ -1854,7 +1870,7 @@ msgstr "öppna kanallista(upp)" msgid "pass" msgstr "klart" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "paus" @@ -1862,15 +1878,15 @@ msgstr "paus" msgid "please press OK when ready" msgstr "tryck OK när färdig" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "föregående kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "föregående kanal i historiken" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "spela in" @@ -1895,11 +1911,11 @@ msgstr "" msgid "remove new found flag" msgstr "ta bort ny hittad flagga" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "repeterande" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "höger" @@ -1945,6 +1961,10 @@ msgstr "söknings status" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1953,11 +1973,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "visa EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "visa program detaljer" @@ -1967,27 +1987,27 @@ msgstr "visa program detaljer" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "hoppa bakåt" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "hoppa framåt" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "starta timeshift" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "stoppa inspelning" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "stoppa timeshift" @@ -2007,7 +2027,7 @@ msgstr "text" msgid "this recording" msgstr "denna inspelning" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2019,7 +2039,7 @@ msgstr "okänd kanal" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "användardefinierad" @@ -2027,7 +2047,7 @@ msgstr "användardefinierad" msgid "vertical" msgstr "vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "visa utökningar" @@ -2043,7 +2063,7 @@ msgstr "" msgid "waiting" msgstr "väntar" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "veckolig" @@ -2061,7 +2081,7 @@ msgstr "ja" msgid "yes (keep feeds)" msgstr "ja (behåll feeds)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "zap" @@ -2478,10 +2498,6 @@ msgstr "LCD Inställning" msgid "No, scan later manually" msgstr "Nej, sök manuellt senare" -#: ../data/ -msgid "Input" -msgstr "Ingång" - #: ../data/ msgid "Soundcarrier" msgstr "Ljudläge" diff --git a/po/tr.po b/po/tr.po index d19951e3..eab7e771 100755 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tr 01\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"POT-Creation-Date: 2006-10-11 17:12+0200\n" "PO-Revision-Date: 2006-06-16 12:51+0200\n" "Last-Translator: koksal \n" "Language-Team: GökselD& \n" @@ -34,8 +34,8 @@ msgstr "\"?" msgid "%d min" msgstr "%d Enaz" -#: ../lib/python/Screens/TimerEntry.py:90 -#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimerEntry.py:94 +#: ../lib/python/Screens/TimerEntry.py:97 #: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -118,7 +118,7 @@ msgstr "" msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -148,7 +148,7 @@ msgstr "AA" msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Activate Picture in Picture" msgstr "Etkinleştir Resim İçinde Resim" @@ -169,7 +169,7 @@ msgstr "Yeni Zaman" msgid "Advanced" msgstr "Gelişmiş" -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:177 msgid "After event" msgstr "Olaydan Sonra" @@ -190,7 +190,7 @@ msgstr "Arapça" msgid "Artist:" msgstr "Sanatçı:" -#: ../lib/python/Screens/InfoBarGenerics.py:1338 +#: ../lib/python/Screens/InfoBarGenerics.py:1344 msgid "Audio Options..." msgstr "" @@ -260,7 +260,7 @@ msgstr "CF Sürücü" msgid "Cable" msgstr "Kablo" -#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:29 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 @@ -292,11 +292,11 @@ msgstr "" msgid "Change setup pin" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:173 ../data/ +#: ../lib/python/Screens/TimerEntry.py:179 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:147 +#: ../lib/python/Screens/InfoBarGenerics.py:148 msgid "Channel:" msgstr "Kanal:" @@ -316,7 +316,7 @@ msgstr "Temizlik" msgid "Clear before scan" msgstr "önceki aramayı Temizle" -#: ../lib/python/Screens/TimerEntry.py:309 +#: ../lib/python/Screens/TimerEntry.py:315 msgid "Clear log" msgstr "Logu Temizle" @@ -376,7 +376,7 @@ msgstr "Tarih" msgid "Delete" msgstr "Silme" -#: ../lib/python/Screens/TimerEntry.py:306 +#: ../lib/python/Screens/TimerEntry.py:312 msgid "Delete entry" msgstr "Girdileri Sil" @@ -384,7 +384,7 @@ msgstr "Girdileri Sil" msgid "Delete failed!" msgstr "Silme Başarısız oldu!" -#: ../lib/python/Screens/TimerEntry.py:126 +#: ../lib/python/Screens/TimerEntry.py:130 msgid "Description" msgstr "Tarifi" @@ -420,11 +420,11 @@ msgstr "DiSEqC Tekrarlayıcı" msgid "Disable" msgstr "Devredışı Bırak" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1171 msgid "Disable Picture in Picture" msgstr "Resim İçinde Resmi devredışı Bırak" -#: ../lib/python/Screens/InfoBarGenerics.py:1122 +#: ../lib/python/Screens/InfoBarGenerics.py:1128 msgid "Disable subtitles" msgstr "" @@ -463,7 +463,7 @@ msgstr "" "Şimdi Yedek Almak İstermisiniz?\n" "O Zaman OK, Ve Bekle!" -#: ../lib/python/Screens/InfoBarGenerics.py:1609 +#: ../lib/python/Screens/InfoBarGenerics.py:1614 msgid "Do you want to resume this playback?" msgstr "" @@ -522,11 +522,11 @@ msgstr "" msgid "Enable parental control" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:164 +#: ../lib/python/Screens/TimerEntry.py:167 msgid "End" msgstr "Son" -#: ../lib/python/Screens/TimerEntry.py:168 +#: ../lib/python/Screens/TimerEntry.py:174 msgid "EndTime" msgstr "Bitiş Zamanı" @@ -536,7 +536,7 @@ msgstr "Bitiş Zamanı" msgid "English" msgstr "İngilizce" -#: ../lib/python/Screens/InfoBarGenerics.py:339 +#: ../lib/python/Screens/InfoBarGenerics.py:340 msgid "Enter main menu..." msgstr "" @@ -578,7 +578,7 @@ msgstr "Fransızca" #: ../lib/python/Screens/ScanSetup.py:197 #: ../lib/python/Screens/ScanSetup.py:230 #: ../lib/python/Screens/ScanSetup.py:241 -#: ../lib/python/Screens/TimerEntry.py:135 +#: ../lib/python/Screens/TimerEntry.py:139 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekans" @@ -588,8 +588,8 @@ msgstr "Frekans" msgid "Fri" msgstr "Fri" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:149 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:153 msgid "Friday" msgstr "Cuma" @@ -641,8 +641,8 @@ msgstr "Sabit Sürücü" msgid "Hierarchy mode" msgstr "Düzen Modu" -#: ../lib/python/Screens/InfoBarGenerics.py:1304 -#: ../lib/python/Screens/InfoBarGenerics.py:1312 +#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1318 msgid "How many minutes do you want to record?" msgstr "Kaç dakika kayıt yapmak istersiniz ?" @@ -679,7 +679,11 @@ msgstr "Başlangıç Ayarları" msgid "Initializing Harddisk..." msgstr "Harddiskiniz Sıfırlanıyor" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InputBox.py:14 ../data/ +msgid "Input" +msgstr "Giriş" + +#: ../lib/python/Screens/InfoBarGenerics.py:1220 msgid "Instant Record..." msgstr "" @@ -719,7 +723,7 @@ msgstr "Lisan Seçimi" msgid "Latitude" msgstr "Latitude" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Left" msgstr "" @@ -763,16 +767,16 @@ msgstr "Modülasyon" msgid "Mon" msgstr "Pazartesi" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "Mon-Fri" msgstr "Pazartesi-Cuma" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:145 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Monday" msgstr "Pazartesi" -#: ../lib/python/Screens/InfoBarGenerics.py:1173 +#: ../lib/python/Screens/InfoBarGenerics.py:1179 msgid "Move Picture in Picture" msgstr "Resimden Resme hareket Et" @@ -808,7 +812,7 @@ msgstr "N/A Tanımsız" msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:125 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Name" msgstr "İsim" @@ -829,7 +833,7 @@ msgstr "Ağ Tarama" msgid "New" msgstr "Yeni" -#: ../lib/python/Screens/ParentalControlSetup.py:217 +#: ../lib/python/Screens/ParentalControlSetup.py:218 msgid "New pin" msgstr "" @@ -845,11 +849,11 @@ msgstr "Sonraki" msgid "No" msgstr "Hayır" -#: ../lib/python/Screens/InfoBarGenerics.py:1324 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "No HDD found or HDD not initialized!" msgstr "HDD Bulunamadı Veya HDD Yok" -#: ../lib/python/Screens/InfoBarGenerics.py:1257 +#: ../lib/python/Screens/InfoBarGenerics.py:1263 msgid "No event info found, recording indefinitely." msgstr "Hiçbir Bilgi Olay Bulunmadı,Süresiz Olarak Kaydet." @@ -888,7 +892,7 @@ msgid "" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:28 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" @@ -914,7 +918,7 @@ msgstr "Çevrimiçi-Yükseltme" msgid "Packet management" msgstr "Paket Yönetimi" -#: ../lib/python/Components/ParentalControl.py:73 ../data/ +#: ../lib/python/Components/ParentalControl.py:80 ../data/ msgid "Parental control" msgstr "" @@ -926,7 +930,7 @@ msgstr "" msgid "Play recorded movies..." msgstr "Kayıtdaki Filmleri Oynat..." -#: ../lib/python/Screens/InfoBarGenerics.py:1087 +#: ../lib/python/Screens/InfoBarGenerics.py:1093 msgid "Please choose an extension..." msgstr "Lütfen Bir İlave Seçin..." @@ -938,7 +942,7 @@ msgstr "Lütfen Yani Bukete Bir İsim Verin" msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/ParentalControlSetup.py:25 +#: ../lib/python/Screens/ParentalControlSetup.py:28 msgid "Please enter the correct pin code" msgstr "" @@ -946,11 +950,11 @@ msgstr "" msgid "Please enter the old pin code" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:283 +#: ../lib/python/Screens/TimerEntry.py:289 msgid "Please select a subservice to record..." msgstr "Lütfen alt servis kayıtı için seçin" -#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/InfoBarGenerics.py:1481 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Alt Servis Seçin Lütfen..." @@ -1048,7 +1052,7 @@ msgstr "Yayıncılar" msgid "Quick" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1472 +#: ../lib/python/Screens/InfoBarGenerics.py:1477 msgid "Quickzap" msgstr "" @@ -1072,7 +1076,7 @@ msgstr "" msgid "Recording" msgstr "Kaydetme" -#: ../lib/python/Screens/ParentalControlSetup.py:218 +#: ../lib/python/Screens/ParentalControlSetup.py:219 msgid "Reenter new pin" msgstr "" @@ -1088,7 +1092,7 @@ msgstr "Plugins Sil" msgid "Remove plugins" msgstr "Plugins Sil" -#: ../lib/python/Screens/TimerEntry.py:129 +#: ../lib/python/Screens/TimerEntry.py:133 msgid "Repeat Type" msgstr "Tekrarlanan Tür" @@ -1105,7 +1109,7 @@ msgstr "Yeniden Başlat" msgid "Restore" msgstr "Geri Yükle" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Right" msgstr "" @@ -1127,8 +1131,8 @@ msgstr "Uydu" msgid "Satellites" msgstr "Uydular" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:154 msgid "Saturday" msgstr "Cumartesi" @@ -1145,15 +1149,15 @@ msgstr "Doğuyu Raraştır" msgid "Search west" msgstr "Batıyı Araştır" -#: ../lib/python/Screens/InfoBarGenerics.py:1390 +#: ../lib/python/Screens/InfoBarGenerics.py:1396 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1379 +#: ../lib/python/Screens/InfoBarGenerics.py:1385 msgid "Select audio track" msgstr "Ses İzlerini Seç" -#: ../lib/python/Screens/TimerEntry.py:204 +#: ../lib/python/Screens/TimerEntry.py:210 msgid "Select channel to record from" msgstr "Seçili Kanalı Kaydet" @@ -1242,15 +1246,15 @@ msgstr "Güney" msgid "Spanish" msgstr "İspanyolca" -#: ../lib/python/Screens/TimerEntry.py:157 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "Start" msgstr "Başla" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "Start recording?" msgstr "Kaydı Başlat" -#: ../lib/python/Screens/TimerEntry.py:160 +#: ../lib/python/Screens/TimerEntry.py:165 msgid "StartTime" msgstr "Başlama Zamanı" @@ -1266,7 +1270,7 @@ msgstr "Doğu Adımı" msgid "Step west" msgstr "Batı Adımı" -#: ../lib/python/Screens/InfoBarGenerics.py:1378 +#: ../lib/python/Screens/InfoBarGenerics.py:1384 msgid "Stereo" msgstr "" @@ -1277,7 +1281,7 @@ msgstr "" msgid "Stop" msgstr "Dur" -#: ../lib/python/Screens/InfoBarGenerics.py:957 +#: ../lib/python/Screens/InfoBarGenerics.py:963 msgid "Stop Timeshift?" msgstr "Zamandonduru . Durdur?" @@ -1293,7 +1297,7 @@ msgstr "Pozisyonu Sakla" msgid "Stored position" msgstr "Pozisyonu saklandı" -#: ../lib/python/Screens/InfoBarGenerics.py:1409 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Subservice list..." msgstr "Alt Servis Listesi..." @@ -1302,12 +1306,12 @@ msgstr "Alt Servis Listesi..." msgid "Sun" msgstr "güneş" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:155 msgid "Sunday" msgstr "Pazar" -#: ../lib/python/Screens/InfoBarGenerics.py:1170 +#: ../lib/python/Screens/InfoBarGenerics.py:1176 msgid "Swap Services" msgstr "" @@ -1315,11 +1319,11 @@ msgstr "" msgid "Swedish" msgstr "İsveç" -#: ../lib/python/Screens/InfoBarGenerics.py:1414 +#: ../lib/python/Screens/InfoBarGenerics.py:1419 msgid "Switch to next subservice" msgstr "Alt Servisi Değiştir" -#: ../lib/python/Screens/InfoBarGenerics.py:1415 +#: ../lib/python/Screens/InfoBarGenerics.py:1420 msgid "Switch to previous subservice" msgstr "Önceki Alt Servisle Değiştir" @@ -1342,8 +1346,8 @@ msgid "The pin code has been changed successfully." msgstr "" #: ../lib/python/Screens/ChannelSelection.py:153 -#: ../lib/python/Screens/ParentalControlSetup.py:38 -#: ../lib/python/Components/ParentalControl.py:136 +#: ../lib/python/Screens/ParentalControlSetup.py:40 +#: ../lib/python/Components/ParentalControl.py:141 msgid "The pin code you entered is wrong." msgstr "" @@ -1364,8 +1368,8 @@ msgstr "Başlangıç" msgid "Thu" msgstr "Perşembe" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:148 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:152 msgid "Thursday" msgstr "Perşembe" @@ -1373,7 +1377,7 @@ msgstr "Perşembe" msgid "Time" msgstr "Zaman" -#: ../lib/python/Screens/TimerEntry.py:127 +#: ../lib/python/Screens/TimerEntry.py:131 msgid "Timer Type" msgstr "Zaman Yaz" @@ -1410,13 +1414,17 @@ msgstr "Transponder" msgid "Transpondertype" msgstr "Transponder Yaz" +#: ../lib/python/Screens/InputBox.py:168 +msgid "Tries left:" +msgstr "" + #: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Salı" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:146 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Tuesday" msgstr "Salı" @@ -1491,7 +1499,7 @@ msgstr "Kullanıcı İçin Bir USALS Uydu" msgid "User defined" msgstr "Kullanıcı Tanımlı" -#: ../lib/python/Screens/InfoBarGenerics.py:1747 +#: ../lib/python/Screens/InfoBarGenerics.py:1752 msgid "View teletext..." msgstr "" @@ -1508,12 +1516,12 @@ msgstr "W" msgid "Wed" msgstr "Evlen" -#: ../lib/python/Screens/TimerEntry.py:96 -#: ../lib/python/Screens/TimerEntry.py:147 +#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Wednesday" msgstr "Çarşamba" -#: ../lib/python/Screens/TimerEntry.py:142 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Weekday" msgstr "Gün" @@ -1534,6 +1542,10 @@ msgstr "Evet" msgid "You cannot delete this!" msgstr "Siz bunu silemezsiniz !" +#: ../lib/python/Screens/InputBox.py:108 +msgid "You have to wait for" +msgstr "" + #: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1586,18 +1598,18 @@ msgstr "Yeni Dosya ve Çalmalistesi" msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (enter recording duration)" msgstr "Yeni Kayıt (Kaydederken Süre Gir)" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (indefinitely)" msgstr "Kayıt ekle ( Süresiz olarak )" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "add recording (stop after current event)" msgstr "Kayıt Ekle ( Durdur Şuanki Kayıdı )" @@ -1635,7 +1647,7 @@ msgstr "Geri" msgid "blacklist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "change recording (duration)" msgstr "Kaydederek Değiştir (Süre)" @@ -1655,7 +1667,7 @@ msgstr "Çalma Listesini Temizle" msgid "complex" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:580 +#: ../lib/python/Screens/InfoBarGenerics.py:586 msgid "continue" msgstr "" @@ -1663,7 +1675,7 @@ msgstr "" msgid "copy to favourites" msgstr "Favoriyi Kopyala" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "daily" msgstr "Günlük" @@ -1679,12 +1691,12 @@ msgstr "Sil...." msgid "disable move mode" msgstr "Taşıma Modunu Kapat" -#: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/TimerEntry.py:87 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "do nothing" msgstr "Hiçbirşey Yapma" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1336 msgid "don't record" msgstr "Kayıt Bitti" @@ -1728,7 +1740,7 @@ msgstr "Kullanılabilir Disk Alanı" msgid "full /etc directory" msgstr "Tüm /etc Klasörü" -#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/TimerEntry.py:87 msgid "go to deep standby" msgstr "Derin Uyku Ya git" @@ -1752,7 +1764,7 @@ msgstr "init Modul" msgid "leave movie player..." msgstr "Film Oynatıcıdan Çık" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "left" msgstr "" @@ -1774,15 +1786,19 @@ msgstr "El İle" msgid "mins" msgstr "Dakikalar" +#: ../lib/python/Screens/InputBox.py:108 +msgid "minutes and" +msgstr "" + #: ../lib/python/Components/ParentalControl.py:14 msgid "never" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "next channel" msgstr "Sonraki Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "next channel in history" msgstr "Bundansonra Gelecek Kanal İçeriği" @@ -1819,7 +1835,7 @@ msgstr "Kapalı" msgid "on" msgstr "Açık" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "once" msgstr "Vaktiyle" @@ -1827,15 +1843,15 @@ msgstr "Vaktiyle" msgid "only /etc/enigma2 directory" msgstr "Yanlız /etc/enigma2 Dizini" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:261 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:254 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(up)" msgstr "" @@ -1843,7 +1859,7 @@ msgstr "" msgid "pass" msgstr "Şifre" -#: ../lib/python/Screens/InfoBarGenerics.py:579 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "pause" msgstr "" @@ -1851,15 +1867,15 @@ msgstr "" msgid "please press OK when ready" msgstr "Hazırsanız OK Basın" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "previous channel" msgstr "Önceki Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "previous channel in history" msgstr "Önceki Kanal Geçmişi" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "record" msgstr "Kayıt" @@ -1884,11 +1900,11 @@ msgstr "" msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:84 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "repeated" msgstr "yinelenen" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "right" msgstr "" @@ -1934,6 +1950,10 @@ msgstr "Arama Durumu" msgid "second cable of motorized LNB" msgstr "" +#: ../lib/python/Screens/InputBox.py:108 +msgid "seconds." +msgstr "" + #: ../lib/python/Screens/ParentalControlSetup.py:96 msgid "service pin" msgstr "" @@ -1942,11 +1962,11 @@ msgstr "" msgid "setup pin" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:391 +#: ../lib/python/Screens/InfoBarGenerics.py:392 msgid "show EPG..." msgstr "Detaylı EPG" -#: ../lib/python/Screens/InfoBarGenerics.py:353 +#: ../lib/python/Screens/InfoBarGenerics.py:354 msgid "show event details" msgstr "Olay Detayını Göster" @@ -1956,27 +1976,27 @@ msgstr "Olay Detayını Göster" msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:591 msgid "skip backward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:588 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:899 +#: ../lib/python/Screens/InfoBarGenerics.py:905 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1389 +#: ../lib/python/Screens/InfoBarGenerics.py:1395 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1334 msgid "stop recording" msgstr "Kaydı Durdur" -#: ../lib/python/Screens/InfoBarGenerics.py:900 +#: ../lib/python/Screens/InfoBarGenerics.py:906 msgid "stop timeshift" msgstr "" @@ -1996,7 +2016,7 @@ msgstr "Metin" msgid "this recording" msgstr "Bunu Kaydet" -#: ../lib/python/Components/ParentalControl.py:73 +#: ../lib/python/Components/ParentalControl.py:80 msgid "this service is protected by a parental control pin" msgstr "" @@ -2008,7 +2028,7 @@ msgstr "Bilinmeyen Servis" msgid "until restart" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "user defined" msgstr "Kullanıcı Tanımlı" @@ -2016,7 +2036,7 @@ msgstr "Kullanıcı Tanımlı" msgid "vertical" msgstr "Düşey" -#: ../lib/python/Screens/InfoBarGenerics.py:1035 +#: ../lib/python/Screens/InfoBarGenerics.py:1041 msgid "view extensions..." msgstr "" @@ -2032,7 +2052,7 @@ msgstr "" msgid "waiting" msgstr "Bekleyin" -#: ../lib/python/Screens/TimerEntry.py:88 +#: ../lib/python/Screens/TimerEntry.py:92 msgid "weekly" msgstr "Haftalık" @@ -2050,7 +2070,7 @@ msgstr "Evet" msgid "yes (keep feeds)" msgstr "Evet (Bunları Sakla)" -#: ../lib/python/Screens/TimerEntry.py:82 +#: ../lib/python/Screens/TimerEntry.py:86 msgid "zap" msgstr "Canlılık" @@ -2459,10 +2479,6 @@ msgstr "LCD Kurulum" msgid "No, scan later manually" msgstr "Hayır, Sonra Ara Manuelolarak" -#: ../data/ -msgid "Input" -msgstr "Giriş" - #: ../data/ msgid "Soundcarrier" msgstr "Ses Taşıyıcı" -- 2.30.2