From: Stefan Pluecken Date: Tue, 10 Oct 2006 23:07:33 +0000 (+0000) Subject: some German translations (especially for the parental control) X-Git-Tag: 2.6.0~2946 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/da51ddf9784483ff34fc51fcf33971018b8794d2 some German translations (especially for the parental control) improve automatic cable scan --- diff --git a/lib/components/scan.h b/lib/components/scan.h index 5a3ce492..fb6b921f 100644 --- a/lib/components/scan.h +++ b/lib/components/scan.h @@ -45,7 +45,7 @@ public: void addInitial(const eDVBFrontendParametersTerrestrial &p); /* please keep the flags in sync with lib/dvb/scan.h ! */ - enum { scanNetworkSearch=1, scanRemoveServices=4, scanDontRemoveFeeds=8 }; + enum { scanNetworkSearch=1, scanRemoveServices=4, scanDontRemoveFeeds=8, clearToScanOnFirstNIT = 16 }; int start(int feid, int flags=0); }; diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index e968cfe1..7677a502 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -353,14 +353,14 @@ class NimManager: self.parsedCab = str(tname) elif (name == "transponder"): freq = int(attrs.get('frequency',"")) - sr = int(attrs.get('symbol_rate',"")) - mod = int(attrs.get('modulation',"3")) # QAM64 default - fec = int(attrs.get('fec_inner',"0")) # AUTO default + #sr = int(attrs.get('symbol_rate',"")) + #mod = int(attrs.get('modulation',"3")) # QAM64 default + #fec = int(attrs.get('fec_inner',"0")) # AUTO default if self.parsedCab in self.transponders: pass else: self.transponders[self.parsedCab] = [ ] - self.transponders[self.parsedCab].append((1, freq, sr, mod, fec)) + self.transponders[self.parsedCab].append((1, freq)) class parseTerrestrials(ContentHandler): def __init__(self, terrestrialsList, transponders): @@ -410,7 +410,10 @@ class NimManager: return self.transpondersterrestrial[region] def getCableDescription(self, nim): - return self.cablesList[config.Nims[nim].cable.value] + return self.cablesList[0] + + def getCableTrustNit(self, nim): + return (config.Nims[nim].cabletype.value == "quick") def getTerrestrialDescription(self, nim): return self.terrestrialsList[config.Nims[nim].terrestrial.value][0] @@ -783,7 +786,7 @@ def InitNimManager(nimmgr): nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100)) elif slot.nimType == nimmgr.nimType["DVB-C"]: - nim.cable = ConfigSelection(choices = nimmgr.cablesList) + nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))]) elif slot.nimType == nimmgr.nimType["DVB-T"]: list = [] for x in nimmgr.terrestrialsList: diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index a72d7564..d6d9904c 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -64,7 +64,7 @@ class NimSetup(Screen, ConfigListScreen): self.fillListWithAdvancedSatEntrys(currSat) self.have_advanced = True elif self.nim_type == nimmanager.nimType["DVB-C"]: - self.list.append(getConfigListEntry(_("Cable provider"), self.nimConfig.cable)) + self.list.append(getConfigListEntry(_("Service scan type needed"), self.nimConfig.cabletype)) self.have_advanced = False elif self.nim_type == nimmanager.nimType["DVB-T"]: self.have_advanced = False diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py index 6237b50d..ea8d0b0a 100644 --- a/lib/python/Screens/ScanSetup.py +++ b/lib/python/Screens/ScanSetup.py @@ -91,15 +91,25 @@ def getInitialTransponderList(tlist, pos): def getInitialCableTransponderList(tlist, cable): list = nimmanager.getTranspondersCable(cable) + symbolrates = [6900000, 6875000] + modulations = [3, 5, 1, 2, 4] # QAM 64, 256, 16, 32, 128 + for x in list: if x[0] == 1: #CABLE - parm = eDVBFrontendParametersCable() - parm.frequency = x[1] - parm.symbol_rate = x[2] - parm.modulation = x[3] - parm.fec_inner = x[4] - parm.inversion = 2 # AUTO - tlist.append(parm) + for symbolrate in symbolrates: + for modulation in modulations: + parm = eDVBFrontendParametersCable() + parm.frequency = x[1] + parm.symbol_rate = symbolrate + parm.modulation = modulation + parm.fec_inner = 0 + parm.inversion = 2 # AUTO + #print "frequency:", x[1] + #print "symbol_rate:", x[2] + #print "modulation:", x[3] + #print "fec_inner:", x[4] + #print "inversion:", 2 + tlist.append(parm) def getInitialTerrestrialTransponderList(tlist, region): list = nimmanager.getTranspondersTerrestrial(region) @@ -613,6 +623,7 @@ class ScanSimple(ConfigListScreen, Screen): print "Scan Tuner", slotid, "-", c.value if c.value: scanPossible = False + trustNit = False tlist = [ ] if nimmanager.getNimType(slotid) == nimmanager.nimType["DVB-S"]: print "is sat" @@ -632,6 +643,8 @@ class ScanSimple(ConfigListScreen, Screen): elif nimmanager.getNimType(slotid) == nimmanager.nimType["DVB-C"]: scanPossible = True getInitialCableTransponderList(tlist, nimmanager.getCableDescription(slotid)) + if nimmanager.getCableTrustNit(slotid): + trustNit = True elif nimmanager.getNimType(slotid) == nimmanager.nimType["DVB-T"]: scanPossible = True getInitialTerrestrialTransponderList(tlist, nimmanager.getTerrestrialDescription(slotid)) @@ -640,6 +653,8 @@ class ScanSimple(ConfigListScreen, Screen): if scanPossible: flags=eComponentScan.scanNetworkSearch + if trustNit: + flags |= eComponentScan.clearToScanOnFirstNIT tmp = self.scan_clearallservices.value if tmp == "yes": flags |= eComponentScan.scanRemoveServices diff --git a/po/Makefile.am b/po/Makefile.am index f851f55b..f8aa9845 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -42,6 +42,7 @@ enigma2.pot: ../lib/python/Screens/InfoBarGenerics.py \ ../lib/python/Screens/ChannelSelection.py \ ../lib/python/Screens/PluginBrowser.py \ + ../lib/python/Screens/ParentalControlSetup.py \ ../lib/python/Screens/Console.py \ ../lib/python/Screens/MediaPlayer.py \ ../lib/python/Screens/PiPSetup.py \ @@ -51,6 +52,8 @@ enigma2.pot: ../lib/python/Components/Lcd.py \ ../lib/python/Components/SetupDevices.py \ ../lib/python/Components/Language.py \ + ../lib/python/Components/ParentalControl.py \ + ../lib/python/Components/ParentalControlList.py \ ../lib/python/Components/NimManager.py \ ../lib/python/Components/TimerList.py \ ../lib/python/Components/EventInfo.py \ diff --git a/po/ar.po b/po/ar.po index b2130e84..0f3c17c3 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-01-10 01:17+0300\n" "Last-Translator: hazem \n" "Language-Team: Arabic \n" @@ -35,9 +35,9 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -61,57 +61,69 @@ msgstr "" msgid "/var directory" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "مخرج 12 فولت" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "أ" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -125,38 +137,36 @@ msgstr "" "فشل عمليه التسجيل بالمؤقت\n" "حاول مره ثانيه؟\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "أأ" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "أب" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "أضف" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "أضف مؤقت" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "متقدم" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "" @@ -164,8 +174,8 @@ msgstr "" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "الكل" @@ -177,37 +187,37 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "آلـى" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "بحث آلـى" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "ب" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "ب أ" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "ب ب" @@ -223,11 +233,11 @@ msgstr "" msgid "Backup Mode" msgstr "" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "" @@ -235,7 +245,7 @@ msgstr "" msgid "Bus: " msgstr "الناقل" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "" @@ -243,18 +253,14 @@ msgstr "" msgid "CF Drive" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "مقدم خدمه الكابل" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "إلغاء" @@ -262,11 +268,32 @@ msgstr "إلغاء" msgid "Capacity: " msgstr "السعه:" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "قناه" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "قناه:" @@ -274,54 +301,51 @@ msgstr "قناه:" msgid "Choose source" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "كلاسيك" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "وضع التهيئه" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "" @@ -329,31 +353,27 @@ msgstr "" msgid "Current version:" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "المعتاد" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "أمسح" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "" @@ -361,7 +381,7 @@ msgstr "" msgid "Delete failed!" msgstr "فشل المسح" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "الوصـف" @@ -373,42 +393,38 @@ msgstr "موجود قرص صلب:" msgid "Detected NIMs:" msgstr "موجود تيونر:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "دايزك أ/ب" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "دايزك أ/ب/ج/د" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "وضع الدايزك" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "وضعيـه الدايزك" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "إبطال" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -438,7 +454,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -463,11 +479,11 @@ msgstr "" msgid "Downloading plugin information. Please wait..." msgstr "" -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "O" @@ -476,47 +492,47 @@ msgstr "O" msgid "ERROR - failed to scan (%s)!" msgstr "خطأ - فشل البحث (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "شرق" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "تفعيل" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "النهايه" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr " إنتهاء الوقت" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "إنجليزى" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" msgstr "" #: ../lib/python/Screens/Console.py:41 @@ -527,44 +543,44 @@ msgstr "" msgid "Execution finished!!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "المفضله" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "التردد" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "الجمعه" @@ -577,7 +593,7 @@ msgstr "" msgid "Function not yet implemented" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "" @@ -585,7 +601,7 @@ msgstr "" msgid "Genre:" msgstr "" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "المانـى" @@ -594,16 +610,16 @@ msgstr "المانـى" msgid "Getting plugin information. Please wait..." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "" @@ -612,20 +628,20 @@ msgstr "" msgid "Harddisk" msgstr "قرص صلب" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "عنوان IP" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "" @@ -638,11 +654,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "فولت زائد" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "" @@ -654,34 +670,34 @@ msgstr "تفعيل البدأ" msgid "Initializing Harddisk..." msgstr "تفعيل القرص الصلب" -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "عكـس" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -689,40 +705,36 @@ msgstr "" msgid "Language selection" msgstr "إختيار اللغه" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "خط العرض" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "خط الطول" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "" @@ -731,35 +743,35 @@ msgstr "" msgid "Model: " msgstr "موديل :" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "الاثنين - الجمعه" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "الاثنين" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "" @@ -771,125 +783,119 @@ msgstr "قائمه الافلام" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "غير موجود" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "الاسم" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "اسم السيرفر" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "التالى" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "لا" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "لا يوجد قرص صلب\n" "أو ان القرص الصلب لم يبدأ" -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "لاشيئ" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "شمال" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "لاشيئ متصل" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "موافق" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "لا يعمل" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "يعمل" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "واحد" @@ -901,28 +907,44 @@ msgstr "" msgid "Packet management" msgstr "" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "عرض الافلام المسجله" -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -937,85 +959,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "انتظر من فضلك ...يتم تحميل القائمه..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "القطبيه" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "الاستقطاب" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "مدخل أ" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "مدخل ب" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "مدخل ج" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "مدخل د" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "الموتور" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "اضغط موافق لتفعيل الاعدادات" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "اضغط موافق للبحث" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "اضغط موافق لبدأ البحث" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "مقدم الخدمه" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "مقدمو الخدمه" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1023,6 +1065,14 @@ msgstr "" msgid "Recording" msgstr "تسجيل" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "" @@ -1031,88 +1081,88 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "إعاده الضبط" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "قمر صناعى" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "اقمار صناعيه" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "السبت" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "اختار القناه التى تريد ان تسجل منها" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "القنوات/الخدمات" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "" @@ -1120,11 +1170,15 @@ msgstr "" msgid "Settings" msgstr "" -#: ../lib/python/Screens/InfoBar.py:48 -msgid "Show the radio player..." +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" msgstr "" #: ../lib/python/Screens/InfoBar.py:49 +msgid "Show the radio player..." +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1136,12 +1190,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "بسيطه" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "مفرد" @@ -1149,21 +1198,21 @@ msgstr "مفرد" msgid "Single EPG" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1174,24 +1223,24 @@ msgid "" "Please choose an other one." msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "جنوب" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "أبـدأ" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "أبـدأ التسجيل؟" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "وقت البـدأ" @@ -1199,108 +1248,122 @@ msgstr "وقت البـدأ" msgid "Step " msgstr "خطوه " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "إيقاف عرض هذا الفيلم؟" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "الوضع المخزن" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "الاحد" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Region" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "ثلاثه" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "الخميس" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "نوع المؤقت" @@ -1308,67 +1371,67 @@ msgstr "نوع المؤقت" msgid "Title:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "وضع النقل" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "الثلاثاء" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "التيونر(الموالف)" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "اثنين" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "نوع البحث" @@ -1390,11 +1453,11 @@ msgstr "" "من فضلك راجع تعليمات التشغيل\n" "خطـأ .. " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "" @@ -1406,46 +1469,46 @@ msgstr "إنتهاء التحديث، وهذه هى النتيجه" msgid "Updating... Please wait... This can take some minutes..." msgstr "جارى التحديث ..انتظر..قد يستغرق بعض الوقت" -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "استخدمDHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "USALS für diesen Sat benutzen" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "يحددها المستخدم" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "وضعيه الفولت" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "الاربعاء" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "يوم الاسبوع" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "غرب" @@ -1453,11 +1516,7 @@ msgstr "غرب" msgid "Year:" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "نعم" @@ -1465,7 +1524,7 @@ msgstr "نعم" msgid "You cannot delete this!" msgstr "لايمكنك مسح هذه !" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1475,23 +1534,23 @@ msgid "" "Press OK to start upgrade." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "تحرير الباقه" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "تحرير المفضله" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "وضع التحريك" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "الغاء تحرير الباقه" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "الغاء تحرير المفضله" @@ -1499,45 +1558,54 @@ msgstr "الغاء تحرير المفضله" msgid "about to start" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "إضافه القناه الى الباقه" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "إضافه القناه الى المفضله" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1545,39 +1613,47 @@ msgid "" msgstr "" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "للخلف" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "دائرى يسار" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "دائرى يمين" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "يومى" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "" @@ -1585,16 +1661,16 @@ msgstr "" msgid "delete..." msgstr "مسح ..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "ألغاء وضع التحريك" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "" @@ -1602,30 +1678,34 @@ msgstr "" msgid "done!" msgstr "" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "فارغ/غير معروف" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "تفعيل تحرير الباقه" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "تفعيل تحرير المفضله" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "تفعيل وضع التحريك" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "إنتهاء تحرير الباقه" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "إنتهاء تحرير المفضله" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "المساحه المتبقيه فى القرص" @@ -1634,31 +1714,31 @@ msgstr "المساحه المتبقيه فى القرص" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "عرضى" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "تفعيل الكـام" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "اترك عارض الافلام .." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1667,7 +1747,11 @@ msgstr "" msgid "list" msgstr "" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "يدوى" @@ -1676,24 +1760,20 @@ msgstr "يدوى" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "القناه التاليه" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "لا." @@ -1701,7 +1781,7 @@ msgstr "لا." msgid "no HDD found" msgstr "لم يتم العثور على قرص صلب" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "لم يتم العثور على كامه" @@ -1709,19 +1789,23 @@ msgstr "لم يتم العثور على كامه" msgid "none" msgstr "لا احد" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "لا يعمـل!" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "يعمل!" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "مره واحده" @@ -1729,15 +1813,15 @@ msgstr "مره واحده" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1745,23 +1829,23 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "" @@ -1769,24 +1853,28 @@ msgstr "" msgid "recording..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "متكرر" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1828,43 +1916,61 @@ msgstr "" msgid "scan state" msgstr "حاله البحث" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "إظهار دليل البرامج الالكترونى" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "" @@ -1876,53 +1982,61 @@ msgstr "" msgid "this recording" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "قناه غير معروفه" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "محدده من قبل المستخدم" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "رأسى" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "اسبوعى" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "نعـم" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "" @@ -1983,6 +2097,10 @@ msgstr "بخث عن القنوات" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "القائـمه الرئيسيـه" + #: ../data/ msgid "TV System" msgstr "التليفزبـون" @@ -2056,8 +2174,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "ضبط القمر/طبق الاستقبال" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2173,8 +2291,8 @@ msgid "Standby / Restart" msgstr "الاستعداد/إعاده التشغيل" #: ../data/ -msgid "Main menu" -msgstr "القائـمه الرئيسيـه" +msgid "Standby" +msgstr "الاستعداد" #: ../data/ msgid "EPG Selection" @@ -2197,8 +2315,8 @@ msgid "Brightness" msgstr "الإضاءه" #: ../data/ -msgid "Standby" -msgstr "الاستعداد" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2256,6 +2374,10 @@ msgstr "" msgid "Subservices" msgstr "الخدمات الفرعيه" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "منطقه الوقت" @@ -2517,6 +2639,10 @@ msgstr "" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "وصله فيديو كاسيت" @@ -2585,6 +2711,10 @@ msgstr "" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "ضبط القمر/طبق الاستقبال" + #: ../data/ msgid "What do you want to scan?" msgstr "ماذا تريد ان تبحث ؟" @@ -2625,6 +2755,21 @@ msgstr "" msgid "Do you want to do another manual service scan?" msgstr "" +#~ msgid "Cable provider" +#~ msgstr "مقدم خدمه الكابل" + +#~ msgid "Classic" +#~ msgstr "كلاسيك" + +#~ msgid "Default" +#~ msgstr "المعتاد" + +#~ msgid "Nothing connected" +#~ msgstr "لاشيئ متصل" + +#~ msgid "Simple" +#~ msgstr "بسيطه" + #~ msgid "remove service" #~ msgstr "حذف القناه" diff --git a/po/ca.po b/po/ca.po index 6dbb3b46..08e52a9a 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-09 00:37+0200\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-09-04 14:14+0200\n" "Last-Translator: Oriol Pellicer i Sabrià \n" "Language-Team: \n" @@ -68,23 +68,23 @@ msgstr "directori /usr/share/enigma2" msgid "/var directory" msgstr "directori /var" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" @@ -92,14 +92,26 @@ msgstr "" msgid "12V Output" msgstr "Sortida 12V" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" @@ -108,11 +120,11 @@ msgstr "" msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:762 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "Un" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -120,7 +132,7 @@ msgstr "" "En aquests moments s'està realitzant una gravació.\n" "Què vols fer?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:505 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -136,15 +148,15 @@ msgstr "" "Ha fallat la gravació!\n" "Vols desactivar la TV i tornar-ho a provar?\n" -#: ../lib/python/Components/NimManager.py:744 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:744 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1169 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Activar PiP" @@ -173,8 +185,8 @@ msgstr "Després de l'event" msgid "Album:" msgstr "Àlbum:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:624 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Tot" @@ -186,37 +198,37 @@ msgstr "Àrab" msgid "Artist:" msgstr "Artista:" -#: ../lib/python/Screens/InfoBarGenerics.py:1340 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Opcions d'àudio" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 #: ../lib/python/Screens/ScanSetup.py:372 -#: ../lib/python/Screens/ScanSetup.py:373 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:375 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:377 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:378 +#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 +#: ../lib/python/Screens/ScanSetup.py:386 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:592 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Recerca automàtica" -#: ../lib/python/Components/NimManager.py:762 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:744 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:744 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -232,11 +244,11 @@ msgstr "Localització del backup" msgid "Backup Mode" msgstr "Mode del backup" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Banda" -#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Ample de banda" @@ -244,7 +256,7 @@ msgstr "Ample de banda" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:756 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "Banda-C" @@ -252,18 +264,14 @@ msgstr "Banda-C" msgid "CF Drive" msgstr "Unitat CF" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:67 -msgid "Cable provider" -msgstr "Proveïdor de cable" - #: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Cancel·lar" @@ -275,6 +283,23 @@ msgstr "Capacitat: " msgid "Catalan" msgstr "" +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Canal" @@ -291,23 +316,23 @@ msgstr "Escull origen" msgid "Cleanup" msgstr "Netejar" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:227 -#: ../lib/python/Screens/ScanSetup.py:242 -#: ../lib/python/Screens/ScanSetup.py:578 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Netejar abans de buscar" -#: ../lib/python/Screens/TimerEntry.py:315 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Borrar log" -#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Velocitat de codi alta" -#: ../lib/python/Screens/ScanSetup.py:236 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Velocitat de codi baixa" @@ -320,8 +345,9 @@ msgstr "Ordre de comanda" msgid "Committed DiSEqC command" msgstr "Comanda DISEqC enviada" -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Completat" @@ -338,11 +364,11 @@ msgstr "Gravació en conflicte" msgid "Current version:" msgstr "Versió actual" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" @@ -350,7 +376,7 @@ msgstr "" msgid "Danish" msgstr "Danès" -#: ../lib/python/Screens/TimeDateInput.py:41 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Data" @@ -358,7 +384,7 @@ msgstr "Data" msgid "Delete" msgstr "Esborrar" -#: ../lib/python/Screens/TimerEntry.py:312 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Esborrar entrada" @@ -378,11 +404,11 @@ msgstr "HDD detectat:" msgid "Detected NIMs:" msgstr "NIMs detectats:" -#: ../lib/python/Components/NimManager.py:694 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "" -#: ../lib/python/Components/NimManager.py:695 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "" @@ -402,11 +428,11 @@ msgstr "Repetir DiSEqC" msgid "Disable" msgstr "Deshabilitar" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Desactivar PiP" -#: ../lib/python/Screens/InfoBarGenerics.py:1124 +#: ../lib/python/Screens/InfoBarGenerics.py:1122 msgid "Disable subtitles" msgstr "" @@ -447,7 +473,7 @@ msgstr "" "Vols realitzar ara el backup?\n" "Després de prémer OK, sisplau espera!" -#: ../lib/python/Screens/InfoBarGenerics.py:1611 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "Vols continuar aquesta gravació?" @@ -476,7 +502,7 @@ msgstr "Descarregant informació del plugin. Espera..." msgid "Dutch" msgstr "Holandès" -#: ../lib/python/Screens/ChannelSelection.py:745 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "" @@ -485,11 +511,15 @@ msgstr "" msgid "ERROR - failed to scan (%s)!" msgstr "ERROR - ha fallat la recerca (%s)!" -#: ../lib/python/Components/NimManager.py:708 -#: ../lib/python/Components/NimManager.py:779 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Est" +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + #: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Activar" @@ -498,6 +528,10 @@ msgstr "Activar" msgid "Enable 5V for active antenna" msgstr "Activar 5V per a antena activa" +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Fi" @@ -512,10 +546,14 @@ msgstr "HoraFi" msgid "English" msgstr "Anglès" -#: ../lib/python/Screens/InfoBarGenerics.py:341 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Entrar al menú principal..." +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" + #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" msgstr "Progrés d'execució:" @@ -524,9 +562,9 @@ msgstr "Progrés d'execució:" msgid "Execution finished!!" msgstr "Ha finalitzat l'execució" -#: ../lib/python/Screens/ScanSetup.py:192 -#: ../lib/python/Screens/ScanSetup.py:194 -#: ../lib/python/Screens/ScanSetup.py:224 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" @@ -535,7 +573,7 @@ msgstr "" msgid "Fast DiSEqC" msgstr "DiSEqC ràpid" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Preferits" @@ -547,9 +585,9 @@ msgstr "Finlandès" msgid "French" msgstr "Francès" -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:220 -#: ../lib/python/Screens/ScanSetup.py:231 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" @@ -600,7 +638,7 @@ msgstr "Anar a 0" msgid "Goto position" msgstr "Anar a la posició" -#: ../lib/python/Screens/ScanSetup.py:239 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Mode interval segur" @@ -609,12 +647,12 @@ msgstr "Mode interval segur" msgid "Harddisk" msgstr "Disc dur" -#: ../lib/python/Screens/ScanSetup.py:240 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Mode jeràrquic" -#: ../lib/python/Screens/InfoBarGenerics.py:1306 -#: ../lib/python/Screens/InfoBarGenerics.py:1314 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Quants minuts vols gravar?" @@ -641,7 +679,7 @@ msgstr "" msgid "Increased voltage" msgstr "Voltatge incrementat" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Iniciar" @@ -653,13 +691,13 @@ msgstr "Inicialitzar" msgid "Initializing Harddisk..." msgstr "Inicialitzant disc dur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Gravació instantània..." -#: ../lib/python/Screens/ScanSetup.py:188 -#: ../lib/python/Screens/ScanSetup.py:221 -#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversió" @@ -693,7 +731,7 @@ msgstr "Selecció d'idioma" msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Esq." @@ -718,7 +756,7 @@ msgstr "Posar límits" msgid "Longitude" msgstr "Longitud" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Transponedor manual" @@ -726,9 +764,9 @@ msgstr "Transponedor manual" msgid "Model: " msgstr "Model: " -#: ../lib/python/Screens/ScanSetup.py:195 -#: ../lib/python/Screens/ScanSetup.py:223 -#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulació" @@ -746,7 +784,7 @@ msgstr "Dill-Div" msgid "Monday" msgstr "Dilluns" -#: ../lib/python/Screens/InfoBarGenerics.py:1175 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Moure Picture in Picture" @@ -766,19 +804,19 @@ msgstr "Menú de pel·lícules" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Suport per a serveis múltiples" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:477 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "N/D" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:485 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" @@ -794,15 +832,19 @@ msgstr "DNS" msgid "Netmask" msgstr "Màscara" -#: ../lib/python/Screens/ScanSetup.py:225 -#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Escanejar xarxa" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Nou" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Nova versió:" @@ -811,40 +853,40 @@ msgstr "Nova versió:" msgid "Next" msgstr "Següent" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "No hi ha disc dur o no està inicialitzat!" -#: ../lib/python/Screens/InfoBarGenerics.py:1259 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "No hi ha info de l'event, gravant indefinidament." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:502 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "No s'ha trobat cap motor." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:517 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" "No hi ha cap sintonitzador configurat per a utilitzar amb un motor diseqc!" -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:377 -#: ../lib/python/Components/NimManager.py:744 -#: ../lib/python/Components/NimManager.py:748 -#: ../lib/python/Components/NimManager.py:762 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:777 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 +#: ../lib/python/Components/NimManager.py:747 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Cap" -#: ../lib/python/Components/NimManager.py:710 -#: ../lib/python/Components/NimManager.py:781 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nort" @@ -852,8 +894,8 @@ msgstr "Nort" msgid "Norwegian" msgstr "Noruec" -#: ../lib/python/Screens/ScanSetup.py:550 -#: ../lib/python/Screens/ScanSetup.py:653 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -867,15 +909,15 @@ msgstr "" msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "" -#: ../lib/python/Components/NimManager.py:777 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Un" @@ -887,27 +929,43 @@ msgstr "Actualització online" msgid "Packet management" msgstr "Gestió de paquets" +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Reproduir pel·lícules gravades..." -#: ../lib/python/Screens/InfoBarGenerics.py:1089 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Sisplau escull una extensió..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Introdueix un nom per a la nova llista" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Introdueix un nom per al nou marcador" -#: ../lib/python/Screens/TimerEntry.py:289 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Sisplau selecciona un subservei a gravar..." -#: ../lib/python/Screens/InfoBarGenerics.py:1478 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 #: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Sisplau selecciona un subservei..." @@ -926,12 +984,12 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Carregant la llista... espera..." -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:200 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polaritat" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarització" @@ -951,7 +1009,7 @@ msgstr "Port C" msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:696 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Motor" @@ -967,19 +1025,19 @@ msgstr "Moviment del motor" msgid "Positioner storage" msgstr "Enmagatzemar posició del motor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 -msgid "Predefined satellite" -msgstr "Satèl·lit predefinit" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" #: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Prem OK per a activar la configuració." -#: ../lib/python/Screens/ScanSetup.py:593 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Prem OK per a buscar" -#: ../lib/python/Screens/ScanSetup.py:148 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Prem OK per a començar la recerca" @@ -987,16 +1045,28 @@ msgstr "Prem OK per a començar la recerca" msgid "Prev" msgstr "Ant" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Proveïdor" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Proveïdors" -#: ../lib/python/Screens/InfoBarGenerics.py:1474 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" @@ -1020,6 +1090,14 @@ msgstr "Sortir del zappeig ràpid dels subserveis?" msgid "Recording" msgstr "Gravant" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Esborrar plugins" @@ -1036,16 +1114,16 @@ msgstr "Tipus de repetició" msgid "Replace current playlist" msgstr "Substituïr la llista actual" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Resetejar" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Restaurar" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Dreta" @@ -1054,16 +1132,16 @@ msgstr "Dreta" msgid "Sat" msgstr "Dis" -#: ../lib/python/Screens/ScanSetup.py:186 -#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 #: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 #: ../lib/python/Screens/Satconfig.py:145 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satèl·lit" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satèl·lits" @@ -1072,8 +1150,8 @@ msgstr "Satèl·lits" msgid "Saturday" msgstr "Dissabte" -#: ../lib/python/Screens/ScanSetup.py:584 -#: ../lib/python/Screens/ScanSetup.py:589 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Escanejar NIM" @@ -1085,15 +1163,15 @@ msgstr "Buscar a l'est" msgid "Search west" msgstr "Buscar a l'oest" -#: ../lib/python/Screens/InfoBarGenerics.py:1392 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Seleccionar mode àudio" -#: ../lib/python/Screens/InfoBarGenerics.py:1381 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Seleccionar pista d'àudio" -#: ../lib/python/Screens/TimerEntry.py:210 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Selecciona el canal a gravar" @@ -1101,7 +1179,11 @@ msgstr "Selecciona el canal a gravar" msgid "Sequence repeat" msgstr "Repetir seqüència" -#: ../lib/python/Screens/ChannelSelection.py:731 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Canals" @@ -1113,6 +1195,10 @@ msgstr "Límits activats" msgid "Settings" msgstr "Configuracions" +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Reproductor de ràdio..." @@ -1129,7 +1215,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "Emisions similars:" -#: ../lib/python/Components/NimManager.py:692 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Un" @@ -1137,21 +1223,21 @@ msgstr "Un" msgid "Single EPG" msgstr "EPG senzill" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Satèl·lit únic" -#: ../lib/python/Screens/ScanSetup.py:329 -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Transponedor únic" -#: ../lib/python/Components/NimManager.py:714 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:546 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1165,8 +1251,8 @@ msgstr "" "\n" "Sisplau, escull-ne un altre." -#: ../lib/python/Components/NimManager.py:710 -#: ../lib/python/Components/NimManager.py:781 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Sud" @@ -1178,7 +1264,7 @@ msgstr "Espanyol" msgid "Start" msgstr "Inici" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Iniciar gravació?" @@ -1198,7 +1284,7 @@ msgstr "Pas a l'est" msgid "Step west" msgstr "Pas a l'oest" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stèreo" @@ -1209,7 +1295,7 @@ msgstr "Stèreo" msgid "Stop" msgstr "Parar" -#: ../lib/python/Screens/InfoBarGenerics.py:959 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Cancel·lar la pausa?" @@ -1225,7 +1311,7 @@ msgstr "Guardar la posició" msgid "Stored position" msgstr "Posició guardada" -#: ../lib/python/Screens/InfoBarGenerics.py:1411 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Llista de subserveis..." @@ -1239,7 +1325,7 @@ msgstr "Diu" msgid "Sunday" msgstr "Diumenge" -#: ../lib/python/Screens/InfoBarGenerics.py:1172 +#: ../lib/python/Screens/InfoBarGenerics.py:1170 msgid "Swap Services" msgstr "" @@ -1247,21 +1333,21 @@ msgstr "" msgid "Swedish" msgstr "Suec" -#: ../lib/python/Screens/InfoBarGenerics.py:1416 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Canviar al següent subservei" -#: ../lib/python/Screens/InfoBarGenerics.py:1417 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Canviar al subservei anterior" -#: ../lib/python/Screens/ScanSetup.py:189 -#: ../lib/python/Screens/ScanSetup.py:222 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Velocitat de símbol" -#: ../lib/python/Screens/ChannelSelection.py:739 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestre" @@ -1269,7 +1355,21 @@ msgstr "Terrestre" msgid "Terrestrial provider" msgstr "Proveidor terrestre" -#: ../lib/python/Components/NimManager.py:777 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tres" @@ -1287,7 +1387,7 @@ msgstr "Dij" msgid "Thursday" msgstr "Dijous" -#: ../lib/python/Screens/TimeDateInput.py:42 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Hora" @@ -1312,11 +1412,11 @@ msgstr "Mode to" msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:693 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:238 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Mode trasmissió" @@ -1324,7 +1424,7 @@ msgstr "Mode trasmissió" msgid "Transponder" msgstr "Transponedor" -#: ../lib/python/Screens/ScanSetup.py:184 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Tipus de transponedor" @@ -1344,7 +1444,7 @@ msgstr "Dimarts" msgid "Tune" msgstr "To" -#: ../lib/python/Screens/ScanSetup.py:166 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Sintonitzador" @@ -1353,17 +1453,17 @@ msgstr "Sintonitzador" msgid "Turkish" msgstr "Turc" -#: ../lib/python/Components/NimManager.py:777 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Dos" -#: ../lib/python/Screens/ScanSetup.py:172 -#: ../lib/python/Screens/ScanSetup.py:175 -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Tipus de recerca" -#: ../lib/python/Components/NimManager.py:704 +#: ../lib/python/Components/NimManager.py:707 msgid "USALS" msgstr "" @@ -1385,7 +1485,7 @@ msgstr "" msgid "Uncommitted DiSEqC command" msgstr "Comanda DiSEqC no enviada" -#: ../lib/python/Components/NimManager.py:756 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "LNB universal" @@ -1405,11 +1505,11 @@ msgstr "Utilitzar DHCP" msgid "Use usals for this sat" msgstr "Utilitzar usals per a aquest sat" -#: ../lib/python/Components/NimManager.py:756 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Definit per l'usuari" -#: ../lib/python/Screens/InfoBarGenerics.py:1749 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "Veure teletext..." @@ -1417,7 +1517,7 @@ msgstr "Veure teletext..." msgid "Voltage mode" msgstr "Mode voltatge" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" @@ -1435,8 +1535,8 @@ msgstr "Dimecres" msgid "Weekday" msgstr "DiaSetmana" -#: ../lib/python/Components/NimManager.py:708 -#: ../lib/python/Components/NimManager.py:779 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Oest" @@ -1444,7 +1544,7 @@ msgstr "Oest" msgid "Year:" msgstr "Any:" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Si" @@ -1464,23 +1564,23 @@ msgstr "" "El firmware del frontprocessor ha de ser actualitzat.\n" "Prem OK per a començar l'actualizació." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[editar llista]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[editar preferits]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[mode moure]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "cancel·lar l'edició de llistes" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "cancel·lar l'edició de preferits" @@ -1488,7 +1588,7 @@ msgstr "cancel·lar l'edició de preferits" msgid "about to start" msgstr "per a començar" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "afegir llista" @@ -1500,35 +1600,39 @@ msgstr "afegir el directori a la llista" msgid "add file to playlist" msgstr "afegir el fitxer a la llista" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "afegir marcador" +#: ../lib/python/Screens/InfoBarGenerics.py:1328 #: ../lib/python/Screens/InfoBarGenerics.py:1330 -#: ../lib/python/Screens/InfoBarGenerics.py:1332 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:1332 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:1332 msgid "add recording (stop after current event)" msgstr "afegir gravació (fins que s'acabi el programa)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "afegir el canal a la llista" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "afegir el canal als preferits" -#: ../lib/python/Components/NimManager.py:661 -#: ../lib/python/Components/NimManager.py:672 +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 msgid "advanced" msgstr "" @@ -1541,19 +1645,23 @@ msgstr "" "el següent backup:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "enrere" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "canviar la gravació (durada)" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "circular esq." -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circular dreta" @@ -1561,11 +1669,15 @@ msgstr "circular dreta" msgid "clear playlist" msgstr "netejar la llista" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "continuar" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "copiar als preferits" @@ -1581,16 +1693,16 @@ msgstr "esborrar" msgid "delete..." msgstr "esborrar..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "desactivar mode moviment" #: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "no facis res" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "no gravar" @@ -1598,31 +1710,31 @@ msgstr "no gravar" msgid "done!" msgstr "fet!" -#: ../lib/python/Components/NimManager.py:548 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "buit/desconegut" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "activar l'edició de la llista" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "activar l'edició dels preferits" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "activar mode moviment" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "fi de l'edició de llistes" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "fi de l'edició de preferits" -#: ../lib/python/Components/NimManager.py:667 +#: ../lib/python/Components/NimManager.py:670 msgid "equal to Socket A" msgstr "" @@ -1646,11 +1758,11 @@ msgstr "escoltar la ràdio..." msgid "hide player" msgstr "amagar reproductor" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horitzontal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "iniciar mòdul" @@ -1658,7 +1770,7 @@ msgstr "iniciar mòdul" msgid "leave movie player..." msgstr "sortir del reproductor de pel·lícules..." -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "esquerra" @@ -1667,11 +1779,11 @@ msgstr "esquerra" msgid "list" msgstr "llista" -#: ../lib/python/Components/NimManager.py:668 +#: ../lib/python/Components/NimManager.py:671 msgid "loopthrough to socket A" msgstr "" -#: ../lib/python/Components/NimManager.py:705 +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manual" @@ -1680,16 +1792,20 @@ msgstr "manual" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "canal següent" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "canal històric següent" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "" @@ -1697,7 +1813,7 @@ msgstr "" msgid "no HDD found" msgstr "no hi ha disc dur" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "no hi ha el mòdul" @@ -1705,19 +1821,19 @@ msgstr "no hi ha el mòdul" msgid "none" msgstr "cap" -#: ../lib/python/Components/NimManager.py:669 +#: ../lib/python/Components/NimManager.py:672 msgid "nothing connected" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "" @@ -1729,15 +1845,15 @@ msgstr "un sol cop" msgid "only /etc/enigma2 directory" msgstr "només el directori /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1745,19 +1861,19 @@ msgstr "" msgid "pass" msgstr "passa" -#: ../lib/python/Screens/InfoBarGenerics.py:581 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "pausa" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "prem OK quan estiguis a punt" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "canal anterior" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "canal històric anterior" @@ -1769,16 +1885,20 @@ msgstr "gravar" msgid "recording..." msgstr "gravant..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "esborrar totes les marques trobades" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "eliminar entrada" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "esborrar nova marca trobada" @@ -1786,7 +1906,7 @@ msgstr "esborrar nova marca trobada" msgid "repeated" msgstr "repetit" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "dreta" @@ -1828,44 +1948,53 @@ msgstr "" msgid "scan state" msgstr "estat de la recerca" -#: ../lib/python/Components/NimManager.py:670 +#: ../lib/python/Components/NimManager.py:673 msgid "second cable of motorized LNB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:393 +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "mostrar EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:355 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "mostrar detalls del programa" -#: ../lib/python/Components/NimManager.py:660 -#: ../lib/python/Components/NimManager.py:671 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:587 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "saltar endarrere" -#: ../lib/python/Screens/InfoBarGenerics.py:584 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "saltar endavant" -#: ../lib/python/Screens/InfoBarGenerics.py:901 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "activar pausa" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "stèreo" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "aturar gravació" -#: ../lib/python/Screens/InfoBarGenerics.py:902 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "cancel·lar pausa" @@ -1885,19 +2014,27 @@ msgstr "text" msgid "this recording" msgstr "aquesta gravació" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "canal desconegut" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "definit per l'usuari" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1037 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "veure extensions..." @@ -1905,6 +2042,10 @@ msgstr "veure extensions..." msgid "view recordings..." msgstr "veure gravacions..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "esperant" @@ -1913,13 +2054,17 @@ msgstr "esperant" msgid "weekly" msgstr "setmanalment" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "si" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "si (mantenir feeds)" @@ -1989,6 +2134,10 @@ msgstr "Recerca de canal" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "Menú principal" + #: ../data/ msgid "TV System" msgstr "Sistema de TV" @@ -2042,8 +2191,8 @@ msgid "Do you want to view a tutorial?" msgstr "Vols veure un tutorial?" #: ../data/ -msgid "Setup" -msgstr "Configuració" +msgid "No, do nothing." +msgstr "No, no cal." #: ../data/ msgid "#000000" @@ -2066,8 +2215,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat / Config Ant" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2083,17 +2232,13 @@ msgstr "" "Prem OK per a començar el backup." #: ../data/ -msgid "The wizard is finished now." -msgstr "L'assistent ha finalitzat." +msgid "Mute" +msgstr "Silenci" #: ../data/ msgid "Service Searching" msgstr "Buscant canal" -#: ../data/ -msgid "Mute" -msgstr "Silenci" - #: ../data/ msgid "" "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " @@ -2117,6 +2262,16 @@ msgstr "Activar llistes múltiples" msgid "Keyboard Setup" msgstr "Configuració teclat" +#: ../data/ +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" +msgstr "" +"Utilitza els botons dreta/esquerra per a canviar una opció.\n" +"\n" +"Sisplau configura el tuner A" + #: ../data/ msgid "Dish" msgstr "Antenna" @@ -2125,10 +2280,6 @@ msgstr "Antenna" msgid "Margin after record" msgstr "Marge després de gravar" -#: ../data/ -msgid "No, just start my dreambox" -msgstr "No, només arrenca la Dreambox" - #: ../data/ msgid "#ffffffff" msgstr "" @@ -2159,30 +2310,25 @@ msgid "Manual Scan" msgstr "Recerca manual" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." -msgstr "" -"Benvingut.\n" -"\n" -"Aquest asistent et guiarà a través de la configuració bàsica de la " -"Dreambox.\n" -"Prem el botó OK del comandament a distància per anar al següent pas." +msgid "Timer Edit" +msgstr "Editar hora" #: ../data/ msgid "RC Menu" msgstr "Menú RC" #: ../data/ -msgid "SNR:" -msgstr "" +msgid "No, just start my dreambox" +msgstr "No, només arrenca la Dreambox" #: ../data/ msgid "Network..." msgstr "Xarxa..." +#: ../data/ +msgid "Tuner configuration" +msgstr "Configuració del sintonitzador" + #: ../data/ msgid "select Slot" msgstr "seleccionar Slot" @@ -2196,8 +2342,8 @@ msgid "Standby / Restart" msgstr "Repòs / Reiniciar" #: ../data/ -msgid "Main menu" -msgstr "Menú principal" +msgid "Standby" +msgstr "Repòs" #: ../data/ msgid "EPG Selection" @@ -2220,8 +2366,12 @@ msgid "Brightness" msgstr "Brillantor" #: ../data/ -msgid "Standby" -msgstr "Repòs" +msgid "Parental control services Editor" +msgstr "" + +#: ../data/ +msgid "Yes, do another manual scan now" +msgstr "Si, fer una altra recerca manual ara" #: ../data/ msgid "Activate network settings" @@ -2259,6 +2409,10 @@ msgstr "Plugin navegador" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "" + #: ../data/ msgid "Timeshift" msgstr "Pausa" @@ -2268,7 +2422,11 @@ msgid "Downloadable plugins" msgstr "Plugins descarregables" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" +msgid "Subservices" +msgstr "Subserveis" + +#: ../data/ +msgid "Parental control setup" msgstr "" #: ../data/ @@ -2291,10 +2449,6 @@ msgstr "Posicionar" msgid "Common Interface" msgstr "Interfície comuna" -#: ../data/ -msgid "Tuner configuration" -msgstr "Configuració del sintonitzador" - #: ../data/ msgid "Language..." msgstr "Idioma..." @@ -2321,8 +2475,8 @@ msgid "Service scan" msgstr "Buscar canals" #: ../data/ -msgid "Yes, do another manual scan now" -msgstr "Si, fer una altra recerca manual ara" +msgid "The wizard is finished now." +msgstr "L'assistent ha finalitzat." #: ../data/ msgid "LCD Setup" @@ -2457,10 +2611,6 @@ msgstr "Sortir de l'assistent" msgid "Media player" msgstr "Reproductor" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "Si, apaga ara." - #: ../data/ msgid "Timer sanity error" msgstr "Error de programació" @@ -2481,10 +2631,6 @@ msgstr "La dreambox s'està reiniciant. Espera un moment..." msgid "WSS on 4:3" msgstr "WSS en 4:3" -#: ../data/ -msgid "Subservices" -msgstr "Subserveis" - #: ../data/ msgid "Choose bouquet" msgstr "Escollir llista" @@ -2553,6 +2699,10 @@ msgstr "Personalitzar" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Euroconnector VCR" @@ -2578,12 +2728,21 @@ msgid "Alpha" msgstr "" #: ../data/ -msgid "Timer Edit" -msgstr "Editar hora" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." +msgstr "" +"Benvingut.\n" +"\n" +"Aquest asistent et guiarà a través de la configuració bàsica de la " +"Dreambox.\n" +"Prem el botó OK del comandament a distància per anar al següent pas." #: ../data/ -msgid "No, do nothing." -msgstr "No, no cal." +msgid "Setup" +msgstr "Configuració" #: ../data/ msgid "This is unsupported at the moment." @@ -2613,6 +2772,10 @@ msgstr "Entrada Hora/Data" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat / Config Ant" + #: ../data/ msgid "What do you want to scan?" msgstr "Què vols buscar?" @@ -2638,14 +2801,8 @@ msgid "NOW" msgstr "ARA" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" -"Utilitza els botons dreta/esquerra per a canviar una opció.\n" -"\n" -"Sisplau configura el tuner A" +msgid "Yes, perform a shutdown now." +msgstr "Si, apaga ara." #: ../data/ msgid "#0064c7" @@ -2659,6 +2816,12 @@ msgstr "Reproductor" msgid "Do you want to do another manual service scan?" msgstr "Vols fer una altra recerca manual?" +#~ msgid "Cable provider" +#~ msgstr "Proveïdor de cable" + +#~ msgid "Predefined satellite" +#~ msgstr "Satèl·lit predefinit" + #~ msgid "Classic" #~ msgstr "Clàssic" diff --git a/po/da.po b/po/da.po index 04894509..60aa03e8 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-06 15:45+0200\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-09-08 21:11+0100\n" "Last-Translator: Gaj1 \n" "Language-Team: The Polar Team \n" @@ -60,51 +60,63 @@ msgstr "/usr/share/enigma2 direktorie" msgid "/var directory" msgstr "/var direktorie" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:139 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Udgang" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:117 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "??" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -112,7 +124,7 @@ msgstr "" "En optagelse er i gang.\n" "Hvad vil du gøre?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:505 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -128,15 +140,15 @@ msgstr "" "Timeroptagelse slået fejl.\n" "Skift kanal og prøv igen?\n" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1169 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Aktiver Billed i Billed" @@ -165,8 +177,8 @@ msgstr "Efter film" msgid "Album:" msgstr "Album:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:624 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Alle" @@ -178,37 +190,37 @@ msgstr "Arabisk" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1340 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Lyd Valg..." -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 #: ../lib/python/Screens/ScanSetup.py:372 -#: ../lib/python/Screens/ScanSetup.py:373 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:375 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:377 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:378 +#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 +#: ../lib/python/Screens/ScanSetup.py:386 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:592 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Automatisk Søgning" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -224,11 +236,11 @@ msgstr "Backup Lokation" msgid "Backup Mode" msgstr "Kopi Type" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Bånd" -#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Båndbredde" @@ -236,7 +248,7 @@ msgstr "Båndbredde" msgid "Bus: " msgstr "Bus:" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Bånd" @@ -244,18 +256,14 @@ msgstr "C-Bånd" msgid "CF Drive" msgstr "CF Disk" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Satconfig.py:68 -msgid "Cable provider" -msgstr "Kabel udbyder" - -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Fortryd" @@ -263,6 +271,27 @@ msgstr "Fortryd" msgid "Capacity: " msgstr "Kapacitet: " +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanal" @@ -279,46 +308,47 @@ msgstr "Vælg kilde" msgid "Cleanup" msgstr "Oprydning" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:227 -#: ../lib/python/Screens/ScanSetup.py:242 -#: ../lib/python/Screens/ScanSetup.py:578 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Slet før søgning" -#: ../lib/python/Screens/TimerEntry.py:315 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Slet log" -#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Kode rate høj" -#: ../lib/python/Screens/ScanSetup.py:236 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Kode rate lav" -#: ../lib/python/Screens/Satconfig.py:119 -#: ../lib/python/Screens/Satconfig.py:121 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Kommando rækkefølge" -#: ../lib/python/Screens/Satconfig.py:115 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Kommiteret DiSEqC kommando" -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Færdig" #: ../lib/python/Screens/Satconfig.py:47 -#: ../lib/python/Screens/Satconfig.py:144 ../data/ +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Konfigurations Type" -#: ../lib/python/Screens/TimerEdit.py:203 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Timer konflikt" @@ -326,19 +356,19 @@ msgstr "Timer konflikt" msgid "Current version:" msgstr "Aktuel Version:" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Dansk" -#: ../lib/python/Screens/TimeDateInput.py:41 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Dato" @@ -346,7 +376,7 @@ msgstr "Dato" msgid "Delete" msgstr "Slet" -#: ../lib/python/Screens/TimerEntry.py:312 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Slet adgang" @@ -366,11 +396,11 @@ msgstr "HDD fundet:" msgid "Detected NIMs:" msgstr "Tunere fundet:" -#: ../lib/python/Components/NimManager.py:695 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:696 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" @@ -378,11 +408,11 @@ msgstr "DiSEqC A/B/C/D" msgid "DiSEqC Mode" msgstr "DiSEqC Type" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC type" -#: ../lib/python/Screens/Satconfig.py:123 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC gentagelser" @@ -390,11 +420,11 @@ msgstr "DiSEqC gentagelser" msgid "Disable" msgstr "Afbryd" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Afbryd Billed i Billed" -#: ../lib/python/Screens/InfoBarGenerics.py:1124 +#: ../lib/python/Screens/InfoBarGenerics.py:1122 msgid "Disable subtitles" msgstr "Afbryde undertekster" @@ -460,11 +490,11 @@ msgstr "Downloade nye Plugins" msgid "Downloading plugin information. Please wait..." msgstr "Downloader plugin informationer. Vent venligst..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Hollandsk" -#: ../lib/python/Screens/ChannelSelection.py:745 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "Ø" @@ -473,19 +503,27 @@ msgstr "Ø" msgid "ERROR - failed to scan (%s)!" msgstr "FEJL - kan ikke søge (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:780 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Øst" +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + #: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Tilslut" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "Tilslut 5V for aktiv antenne" +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Slut" @@ -500,10 +538,14 @@ msgstr "SlutTid" msgid "English" msgstr "Engelsk" -#: ../lib/python/Screens/InfoBarGenerics.py:341 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Åbne hoved menu..." +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" + #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" msgstr "Kommando Status:" @@ -512,32 +554,32 @@ msgstr "Kommando Status:" msgid "Execution finished!!" msgstr "Kommandoen udført!!" -#: ../lib/python/Screens/ScanSetup.py:192 -#: ../lib/python/Screens/ScanSetup.py:194 -#: ../lib/python/Screens/ScanSetup.py:224 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Hurtig DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoritter" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Finland" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Fransk" -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:220 -#: ../lib/python/Screens/ScanSetup.py:231 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" @@ -588,7 +630,7 @@ msgstr "Gå til 0" msgid "Goto position" msgstr "Drej til position" -#: ../lib/python/Screens/ScanSetup.py:239 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Sikkerheds interval type" @@ -597,12 +639,12 @@ msgstr "Sikkerheds interval type" msgid "Harddisk" msgstr "Harddisk" -#: ../lib/python/Screens/ScanSetup.py:240 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hiraki type" -#: ../lib/python/Screens/InfoBarGenerics.py:1306 -#: ../lib/python/Screens/InfoBarGenerics.py:1314 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Hvor mange minutter vil du optage?" @@ -610,7 +652,7 @@ msgstr "Hvor mange minutter vil du optage?" msgid "IP Address" msgstr "IP-Adresse" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Islandsk" @@ -623,11 +665,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "For at optage via timer, er TV skiftet til optage kanal!\n" -#: ../lib/python/Screens/Satconfig.py:140 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Øget spænding" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Initialiser" @@ -639,34 +681,34 @@ msgstr "Initialisere" msgid "Initializing Harddisk..." msgstr "Initialiserer Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Hurtig Optagelse..." -#: ../lib/python/Screens/ScanSetup.py:188 -#: ../lib/python/Screens/ScanSetup.py:221 -#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Invertere" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italiensk" -#: ../lib/python/Screens/Satconfig.py:108 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:137 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:136 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/V" @@ -675,11 +717,11 @@ msgid "Language selection" msgstr "Valg af sprog" #: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:127 ../data/ +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Breddegrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Venstre" @@ -700,11 +742,11 @@ msgid "Limits on" msgstr "Limits on" #: ../lib/python/Screens/Satconfig.py:24 -#: ../lib/python/Screens/Satconfig.py:125 ../data/ +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Længdegrad" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Manuel transponder" @@ -712,9 +754,9 @@ msgstr "Manuel transponder" msgid "Model: " msgstr "Model:" -#: ../lib/python/Screens/ScanSetup.py:195 -#: ../lib/python/Screens/ScanSetup.py:223 -#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulation" @@ -732,7 +774,7 @@ msgstr "Mandag til Fredag" msgid "Monday" msgstr "Mandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1175 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Flytte Billed i Billed" @@ -752,19 +794,19 @@ msgstr "Film Menu" msgid "Multi EPG" msgstr "Multi EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Multi kanal support" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Mange satellitter" -#: ../lib/python/Components/NimManager.py:478 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Ikke tilgængelig" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:485 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "Tuner" @@ -780,15 +822,19 @@ msgstr "Navneserver" msgid "Netmask" msgstr "Netmaske" -#: ../lib/python/Screens/ScanSetup.py:225 -#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Netværks søgning" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Ny" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Ny Version:" @@ -797,50 +843,50 @@ msgstr "Ny Version:" msgid "Next" msgstr "Næste" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nej" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Ingen HDD fundet eller\n" "HDD ikke initialiseret!." -#: ../lib/python/Screens/InfoBarGenerics.py:1259 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Ingen EPG-Data fundet, optagelse startet." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:502 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Ingen brugbar Motor frontend fundet." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:517 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Ingen Tuner er konfigureret til brug af diseqc Motor!" -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:377 -#: ../lib/python/Components/NimManager.py:745 -#: ../lib/python/Components/NimManager.py:749 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 +#: ../lib/python/Components/NimManager.py:747 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Ingen" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norsk" -#: ../lib/python/Screens/ScanSetup.py:550 -#: ../lib/python/Screens/ScanSetup.py:653 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -848,21 +894,21 @@ msgstr "" "Intet at søge!\n" "Sæt venligst Tuner indstilling op før du starter søgning." -#: ../lib/python/Screens/Setup.py:83 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Off" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "On" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "En" @@ -874,28 +920,44 @@ msgstr "Online-Opgradering" msgid "Packet management" msgstr "Pakke redigering" +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Afspil optagede film..." -#: ../lib/python/Screens/InfoBarGenerics.py:1089 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Vælg venligst en udvidelse..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Indtast venligst navn for ny pakke" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Indtast venligst navn for ny marker" -#: ../lib/python/Screens/TimerEntry.py:289 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Vælg en underkanal til at optagelse..." -#: ../lib/python/Screens/InfoBarGenerics.py:1477 -#: ../lib/python/Screens/SubservicesQuickzap.py:93 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vælg venligst en underkanal..." @@ -913,12 +975,12 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Vent venligst... Henter liste..." -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:200 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polaritet" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisation" @@ -938,7 +1000,7 @@ msgstr "Port C" msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:697 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Motor" @@ -954,19 +1016,19 @@ msgstr "Motor bevægelse" msgid "Positioner storage" msgstr "Gem position" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 -msgid "Predefined satellite" -msgstr "Predefineret satellit" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" #: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Tryk OK for at aktivere indstilling." -#: ../lib/python/Screens/ScanSetup.py:593 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Tryk OK for at søge" -#: ../lib/python/Screens/ScanSetup.py:148 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Tryk OK for at starte søgningen" @@ -974,24 +1036,44 @@ msgstr "Tryk OK for at starte søgningen" msgid "Prev" msgstr "Forrige" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Udbyder" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Udbydere" -#: ../lib/python/Screens/InfoBarGenerics.py:1473 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "Hurtigzap" +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + #: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Slette udførte timere?" -#: ../lib/python/Screens/SubservicesQuickzap.py:104 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "Vil du afslutte underkanals hurtigzap?" @@ -999,6 +1081,14 @@ msgstr "Vil du afslutte underkanals hurtigzap?" msgid "Recording" msgstr "Optager" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Fjerne Plugins" @@ -1015,16 +1105,16 @@ msgstr "Gentage type" msgid "Replace current playlist" msgstr "Skifte nuværende spilleliste" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Reset" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Gendanne" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Højre" @@ -1033,16 +1123,16 @@ msgstr "Højre" msgid "Sat" msgstr "Lør" -#: ../lib/python/Screens/ScanSetup.py:186 -#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 #: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 -#: ../lib/python/Screens/Satconfig.py:146 +#: ../lib/python/Screens/Satconfig.py:145 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellit" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satellitter" @@ -1051,8 +1141,8 @@ msgstr "Satellitter" msgid "Saturday" msgstr "Lørdag" -#: ../lib/python/Screens/ScanSetup.py:584 -#: ../lib/python/Screens/ScanSetup.py:589 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Søg tunere" @@ -1064,23 +1154,27 @@ msgstr "Søg Øst" msgid "Search west" msgstr "Søg Vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1392 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Vælg lyd type" -#: ../lib/python/Screens/InfoBarGenerics.py:1381 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Vælg lyd spor" -#: ../lib/python/Screens/TimerEntry.py:210 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Vælg optagekanal" -#: ../lib/python/Screens/Satconfig.py:117 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Sekvens gentagelse" -#: ../lib/python/Screens/ChannelSelection.py:731 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanaler" @@ -1092,6 +1186,10 @@ msgstr "Indstil limits" msgid "Settings" msgstr "Indstillinger" +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Vis radio afspilleren..." @@ -1108,7 +1206,7 @@ msgstr "Samme" msgid "Similar broadcasts:" msgstr "Samme udsendelser:" -#: ../lib/python/Components/NimManager.py:693 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Enkelt" @@ -1116,21 +1214,21 @@ msgstr "Enkelt" msgid "Single EPG" msgstr "Enkelt EPG" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Enkelt satellit" -#: ../lib/python/Screens/ScanSetup.py:329 -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Enkelt transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Slot " -#: ../lib/python/Components/NimManager.py:547 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Sokkel " @@ -1144,12 +1242,12 @@ msgstr "" "\n" "Vælg venligst en anden." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Syd" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spansk" @@ -1157,7 +1255,7 @@ msgstr "Spansk" msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Start optagelse?" @@ -1177,7 +1275,7 @@ msgstr "Drej mod Øst" msgid "Step west" msgstr "Drej mod Vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stereo" @@ -1188,7 +1286,7 @@ msgstr "Stereo" msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:959 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Stoppe Timeshift?" @@ -1200,11 +1298,11 @@ msgstr "Stoppe afspilning af denne film?" msgid "Store position" msgstr "Gemme Position" -#: ../lib/python/Screens/Satconfig.py:105 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Gemt Position" -#: ../lib/python/Screens/InfoBarGenerics.py:1411 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Underkanal liste..." @@ -1218,41 +1316,55 @@ msgstr "Søn" msgid "Sunday" msgstr "Søndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1172 +#: ../lib/python/Screens/InfoBarGenerics.py:1170 msgid "Swap Services" msgstr "Bytte kanaler" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Svensk" -#: ../lib/python/Screens/InfoBarGenerics.py:1416 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Skift til næste underkanal" -#: ../lib/python/Screens/InfoBarGenerics.py:1417 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Skift til forrige underkanal" -#: ../lib/python/Screens/ScanSetup.py:189 -#: ../lib/python/Screens/ScanSetup.py:222 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symbol Rate" -#: ../lib/python/Screens/ChannelSelection.py:739 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Jordbaseret" -#: ../lib/python/Screens/Satconfig.py:72 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Jordbaseret udbyder" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tre" -#: ../lib/python/Screens/Satconfig.py:138 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Threshold" @@ -1266,7 +1378,7 @@ msgstr "Tor" msgid "Thursday" msgstr "Torsdag" -#: ../lib/python/Screens/TimeDateInput.py:42 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Tid" @@ -1283,19 +1395,19 @@ msgstr "Titel:" msgid "Today" msgstr "Idag" -#: ../lib/python/Screens/Satconfig.py:100 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Lyd type" -#: ../lib/python/Screens/Satconfig.py:114 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:694 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:238 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Transmissions type" @@ -1303,7 +1415,7 @@ msgstr "Transmissions type" msgid "Transponder" msgstr "Transponder" -#: ../lib/python/Screens/ScanSetup.py:184 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transpondertype" @@ -1323,26 +1435,26 @@ msgstr "Tirsdag" msgid "Tune" msgstr "Tune" -#: ../lib/python/Screens/ScanSetup.py:166 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tuner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Tyrkisk" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "To" -#: ../lib/python/Screens/ScanSetup.py:172 -#: ../lib/python/Screens/ScanSetup.py:175 -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Søge type" -#: ../lib/python/Components/NimManager.py:705 +#: ../lib/python/Components/NimManager.py:707 msgid "USALS" msgstr "USALS" @@ -1360,11 +1472,11 @@ msgstr "" "Se venligst i manual.\n" "FEJL: " -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Ukommiteret DiSEqC kommando" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Universal LNB" @@ -1380,11 +1492,11 @@ msgstr "Opdaterer... Vent venligst... Dette kan tage adskillige minutter..." msgid "Use DHCP" msgstr "Brug (DHCP)" -#: ../lib/python/Screens/Satconfig.py:102 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Brug USALS til denne position" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Brugerdefineret" @@ -1392,11 +1504,11 @@ msgstr "Brugerdefineret" msgid "View teletext..." msgstr "Se teletekst..." -#: ../lib/python/Screens/Satconfig.py:99 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spændings type" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "V" @@ -1414,8 +1526,8 @@ msgstr "Onsdag" msgid "Weekday" msgstr "Ugedag" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:780 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Vest" @@ -1423,7 +1535,7 @@ msgstr "Vest" msgid "Year:" msgstr "År:" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Ja" @@ -1443,23 +1555,23 @@ msgstr "" "Din frontprocessor skal opdateres.\n" "Tryk OK for at starte opdateringen." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[Pakke redigering]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[Favorit redigering]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[Flytte type]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Fortryd pakkeredigering" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Fortryd favoritredigering" @@ -1467,7 +1579,7 @@ msgstr "Fortryd favoritredigering" msgid "about to start" msgstr "Ved at starte" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "Tilføj pakke..." @@ -1479,35 +1591,39 @@ msgstr "Tilføj direktorie til spilleliste" msgid "add file to playlist" msgstr "Tilføj fil til spilleliste" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "Tilføj marker" +#: ../lib/python/Screens/InfoBarGenerics.py:1328 #: ../lib/python/Screens/InfoBarGenerics.py:1330 -#: ../lib/python/Screens/InfoBarGenerics.py:1332 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:1332 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:1332 msgid "add recording (stop after current event)" msgstr "Tilføj optagelse (stop efter nuværende)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Tilføj kanal til pakke" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Tilføj kanal til favoritter" -#: ../lib/python/Components/NimManager.py:662 -#: ../lib/python/Components/NimManager.py:673 +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 msgid "advanced" msgstr "" @@ -1520,19 +1636,23 @@ msgstr "" "følgende backup:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "Tilbage" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "Skifte optagelse (længde)" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "venstre-cirkulær" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "højre-cirkulær" @@ -1540,11 +1660,15 @@ msgstr "højre-cirkulær" msgid "clear playlist" msgstr "Slet spilleliste" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "Fortsæt" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "Kopier til favoritter" @@ -1560,16 +1684,16 @@ msgstr "Slet" msgid "delete..." msgstr "Slet..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Slå flytte type fra" #: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "Gør intet" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "Optag ikke" @@ -1577,31 +1701,31 @@ msgstr "Optag ikke" msgid "done!" msgstr "færdig!" -#: ../lib/python/Components/NimManager.py:549 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "Tom/ukendt" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Åbne pakke redigering" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Åbne favoritredigering" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Åbne flytte type" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Afslut pakke redigering" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Afslut favorit redigering" -#: ../lib/python/Components/NimManager.py:668 +#: ../lib/python/Components/NimManager.py:670 msgid "equal to Socket A" msgstr "" @@ -1625,11 +1749,11 @@ msgstr "Høre radio..." msgid "hide player" msgstr "Skjul afspiller" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horizontal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "Initialiser modul" @@ -1637,7 +1761,7 @@ msgstr "Initialiser modul" msgid "leave movie player..." msgstr "Forlad film afspiller..." -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "Venstre" @@ -1646,11 +1770,11 @@ msgstr "Venstre" msgid "list" msgstr "Liste" -#: ../lib/python/Components/NimManager.py:669 +#: ../lib/python/Components/NimManager.py:671 msgid "loopthrough to socket A" msgstr "" -#: ../lib/python/Components/NimManager.py:706 +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "Manuelt" @@ -1659,16 +1783,20 @@ msgstr "Manuelt" msgid "mins" msgstr "min" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "Næste kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "Næste kanal i hukommelse" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "Nej" @@ -1676,7 +1804,7 @@ msgstr "Nej" msgid "no HDD found" msgstr "Ingen HDD fundet" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Ingen modul fundet" @@ -1684,19 +1812,19 @@ msgstr "Ingen modul fundet" msgid "none" msgstr "Ingen" -#: ../lib/python/Components/NimManager.py:670 +#: ../lib/python/Components/NimManager.py:672 msgid "nothing connected" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "Fra" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "Til" @@ -1708,15 +1836,15 @@ msgstr "En gang" msgid "only /etc/enigma2 directory" msgstr "Kun /etc/enigma2 direktorie" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "Åbne kanalliste" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "Åbne kanalliste(ned)" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "Åbne kanalliste(op)" @@ -1724,19 +1852,19 @@ msgstr "Åbne kanalliste(op)" msgid "pass" msgstr "Ok" -#: ../lib/python/Screens/InfoBarGenerics.py:581 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "Pause" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "Tryk venligst OK når du er klar" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "Forrige kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "Forrige sete kanal" @@ -1748,16 +1876,20 @@ msgstr "Optage" msgid "recording..." msgstr "Optager..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "Fjerne alle nye fundne flag" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "Fjerne indgang" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "Fjerne nye fundne flag" @@ -1765,7 +1897,7 @@ msgstr "Fjerne nye fundne flag" msgid "repeated" msgstr "Gentaget" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "Højre" @@ -1807,44 +1939,53 @@ msgstr "" msgid "scan state" msgstr "Søge status" -#: ../lib/python/Components/NimManager.py:671 +#: ../lib/python/Components/NimManager.py:673 msgid "second cable of motorized LNB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:393 +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "Vis EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:355 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "Vis program detaljer" -#: ../lib/python/Components/NimManager.py:661 -#: ../lib/python/Components/NimManager.py:672 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:587 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "Drop tilbage" -#: ../lib/python/Screens/InfoBarGenerics.py:584 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "Drop fremad" -#: ../lib/python/Screens/InfoBarGenerics.py:901 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "Start timeshift" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "Stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "Stop optagelse" -#: ../lib/python/Screens/InfoBarGenerics.py:902 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "Stop timeshift" @@ -1864,19 +2005,27 @@ msgstr "Tekst" msgid "this recording" msgstr "Denne optagelse" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "Ukendt kanal" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "Brugerdefineret" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "Vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1037 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "Se udvidelser..." @@ -1884,6 +2033,10 @@ msgstr "Se udvidelser..." msgid "view recordings..." msgstr "Se optagelser..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "Venter" @@ -1892,13 +2045,17 @@ msgstr "Venter" msgid "weekly" msgstr "Ugentlig" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "Ja" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "Ja (behold feeds)" @@ -1968,6 +2125,10 @@ msgstr "Kanal Søgning" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Hoved Menu" + #: ../data/ msgid "TV System" msgstr "TV System" @@ -2020,8 +2181,8 @@ msgid "Do you want to view a tutorial?" msgstr "Vil du have en gennemgang ?" #: ../data/ -msgid "Setup" -msgstr "Indstillinger" +msgid "No, do nothing." +msgstr "Nej, gør intet." #: ../data/ msgid "#000000" @@ -2044,8 +2205,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat / Parabol Indstilling" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2060,17 +2221,13 @@ msgstr "" "at lave backup på HDD! Tryk på OK for at begynde backup." #: ../data/ -msgid "The wizard is finished now." -msgstr "Brugen af wizzarden er færdig nu." +msgid "Mute" +msgstr "Mute" #: ../data/ msgid "Service Searching" msgstr "Kanal Søgning" -#: ../data/ -msgid "Mute" -msgstr "Mute" - #: ../data/ msgid "" "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " @@ -2093,6 +2250,16 @@ msgstr "Tilføj multi pakker" msgid "Keyboard Setup" msgstr "Tastatur Indstilling" +#: ../data/ +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" +msgstr "" +"Brug venstre/højre pil for at vælge.\n" +"\n" +"Indstilling for Tuner A" + #: ../data/ msgid "Dish" msgstr "Parabol" @@ -2101,10 +2268,6 @@ msgstr "Parabol" msgid "Margin after record" msgstr "Margin efter optagelse" -#: ../data/ -msgid "No, just start my dreambox" -msgstr "Nej, bare start min Dreambox" - #: ../data/ msgid "#ffffffff" msgstr "" @@ -2134,29 +2297,25 @@ msgid "Manual Scan" msgstr "Manuel Søgning" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." -msgstr "" -"Din dreambox ønsker dig velkommen.\n" -"\n" -"Denne guide vil hjælpe dig igennem opsætningen af din Dreambox.\n" -"Tryk venligst OK på fjernbetjeningen, for at gå til næste trin." +msgid "Timer Edit" +msgstr "Timer Redigering" #: ../data/ msgid "RC Menu" msgstr "Fjernbetjenings Menu" #: ../data/ -msgid "SNR:" -msgstr "SNR:" +msgid "No, just start my dreambox" +msgstr "Nej, bare start min Dreambox" #: ../data/ msgid "Network..." msgstr "Netværk..." +#: ../data/ +msgid "Tuner configuration" +msgstr "Tuner konfiguration" + #: ../data/ msgid "select Slot" msgstr "Vælg Slot" @@ -2170,8 +2329,8 @@ msgid "Standby / Restart" msgstr "Afbryde / Genstarte" #: ../data/ -msgid "Main menu" -msgstr "Hoved Menu" +msgid "Standby" +msgstr "Standby" #: ../data/ msgid "EPG Selection" @@ -2194,8 +2353,12 @@ msgid "Brightness" msgstr "Lysstyrke" #: ../data/ -msgid "Standby" -msgstr "Standby" +msgid "Parental control services Editor" +msgstr "" + +#: ../data/ +msgid "Yes, do another manual scan now" +msgstr "Ja, tag en ny manuel søgning nu" #: ../data/ msgid "Activate network settings" @@ -2233,6 +2396,10 @@ msgstr "Plugin Browser" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "SNR:" + #: ../data/ msgid "Timeshift" msgstr "Tidsskift" @@ -2242,8 +2409,12 @@ msgid "Downloadable plugins" msgstr "Plugins der kan downloades" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" -msgstr "Vil du have en gennemgang ?" +msgid "Subservices" +msgstr "Underkanaler" + +#: ../data/ +msgid "Parental control setup" +msgstr "" #: ../data/ msgid "Timezone" @@ -2265,10 +2436,6 @@ msgstr "Søg" msgid "Common Interface" msgstr "Common Interface" -#: ../data/ -msgid "Tuner configuration" -msgstr "Tuner konfiguration" - #: ../data/ msgid "Language..." msgstr "Sprog..." @@ -2294,8 +2461,8 @@ msgid "Service scan" msgstr "Kanal søgning" #: ../data/ -msgid "Yes, do another manual scan now" -msgstr "Ja, tag en ny manuel søgning nu" +msgid "The wizard is finished now." +msgstr "Brugen af wizzarden er færdig nu." #: ../data/ msgid "LCD Setup" @@ -2431,10 +2598,6 @@ msgstr "Afslut wizard" msgid "Media player" msgstr "Medie Afspiller" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "Ja, afbryd nu." - #: ../data/ msgid "Timer sanity error" msgstr "Timer sanity fejl" @@ -2455,10 +2618,6 @@ msgstr "Din Dreambox slukker nu. Vent venligst..." msgid "WSS on 4:3" msgstr "WSS på 4:3" -#: ../data/ -msgid "Subservices" -msgstr "Underkanaler" - #: ../data/ msgid "Choose bouquet" msgstr "Vælg bouquet" @@ -2527,6 +2686,10 @@ msgstr "Brugerindstillinger" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Scart Video" @@ -2552,12 +2715,20 @@ msgid "Alpha" msgstr "Alpha" #: ../data/ -msgid "Timer Edit" -msgstr "Timer Redigering" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." +msgstr "" +"Din dreambox ønsker dig velkommen.\n" +"\n" +"Denne guide vil hjælpe dig igennem opsætningen af din Dreambox.\n" +"Tryk venligst OK på fjernbetjeningen, for at gå til næste trin." #: ../data/ -msgid "No, do nothing." -msgstr "Nej, gør intet." +msgid "Setup" +msgstr "Indstillinger" #: ../data/ msgid "This is unsupported at the moment." @@ -2587,6 +2758,10 @@ msgstr "Tid/Dato Input" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat / Parabol Indstilling" + #: ../data/ msgid "What do you want to scan?" msgstr "Hvad vil du søge?" @@ -2612,14 +2787,8 @@ msgid "NOW" msgstr "NU" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" -"Brug venstre/højre pil for at vælge.\n" -"\n" -"Indstilling for Tuner A" +msgid "Yes, perform a shutdown now." +msgstr "Ja, afbryd nu." #: ../data/ msgid "#0064c7" @@ -2633,6 +2802,15 @@ msgstr "Medie Afspiller" msgid "Do you want to do another manual service scan?" msgstr "Vil du lave en anden manuel søgning?" +#~ msgid "Cable provider" +#~ msgstr "Kabel udbyder" + +#~ msgid "Predefined satellite" +#~ msgstr "Predefineret satellit" + +#~ msgid "Do you want to view a cutlist tutorial?" +#~ msgstr "Vil du have en gennemgang ?" + #~ msgid "Classic" #~ msgstr "Klassisk" diff --git a/po/de.po b/po/de.po index ed78fda2..297c0c10 100644 --- a/po/de.po +++ b/po/de.po @@ -2,13 +2,13 @@ # Copyright (C) 2005 THE tuxbox-enigma'S COPYRIGHT HOLDER # This file is distributed under the same license as the tuxbox-enigma package. # Automatically generated, 2005. -# +# msgid "" msgstr "" "Project-Id-Version: tuxbox-enigma 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-08-07 20:55+0200\n" -"PO-Revision-Date: 2006-07-09 22:15+0100\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" +"PO-Revision-Date: 2006-10-11 01:05+0100\n" "Last-Translator: \n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -39,9 +39,9 @@ msgstr "" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -67,51 +67,63 @@ msgstr "/usr/share/enigma2 Verzeichnis" msgid "/var directory" msgstr "/var Verzeichnis" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Ausgang" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "30 Minuten" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "5 Minuten" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "60 Minuten" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -119,13 +131,9 @@ msgstr "" "Zur Zeit läuft eine Aufnahme.\n" "Was möchten Sie tun?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 -msgid "" -"A recording is currently running. Please stop the recording before trying to " -"configure the positioner." -msgstr "" -"Es läuft eine Aufnahme. Bitte beenden Sie die Aufnahme bevor Sie das Rotor " -"Setup ausführen." +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 +msgid "A recording is currently running. Please stop the recording before trying to configure the positioner." +msgstr "Es läuft eine Aufnahme. Bitte beenden Sie die Aufnahme bevor Sie das Rotor Setup ausführen." #: ../RecordTimer.py:163 msgid "" @@ -135,38 +143,36 @@ msgstr "" "Timeraufnahme fehlgeschlagen.\n" "Fernsehprogramm ändern und erneut versuchen?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Bild in Bild aktivieren" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Hinzufügen" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "Dateien zur Spielliste hinzufügen" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Timer setzen" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Erweitert" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Nach dem Ereignis" @@ -174,8 +180,8 @@ msgstr "Nach dem Ereignis" msgid "Album:" msgstr "Album:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Alle" @@ -187,37 +193,39 @@ msgstr "Arabisch" msgid "Artist:" msgstr "Künstler:" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Audio Optionen" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 #: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 +#: ../data/ msgid "Automatic Scan" msgstr "Automatische Suche" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -233,11 +241,11 @@ msgstr "Sicherungsort" msgid "Backup Mode" msgstr "Sicherungs-Modus" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Band" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Bandbreite" @@ -245,7 +253,7 @@ msgstr "Bandbreite" msgid "Bus: " msgstr "Bus:" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Band" @@ -253,18 +261,15 @@ msgstr "C-Band" msgid "CF Drive" msgstr "CF Laufwerk" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kabelanbieter" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 +#: ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Abbruch" @@ -272,11 +277,34 @@ msgstr "Abbruch" msgid "Capacity: " msgstr "Kapazität: " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "Katalanisch" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 +#: ../data/ +msgid "Change pin code" +msgstr "Pincode ändern" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "Kanal-Pincode ändern" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "Kanal-Pincodes ändern" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "Einstellungs-Pincode ändern" + +#: ../lib/python/Screens/TimerEntry.py:173 +#: ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanal:" @@ -284,54 +312,52 @@ msgstr "Kanal:" msgid "Choose source" msgstr "Quelle wählen" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "klassisch" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Aufräumen" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Vor der Suche löschen" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Log löschen" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Empfangsrate hoch" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Empfangsrate niedrig" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Befehlsfolge" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Comitted DiSEqC Befehl" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Komplett" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 +#: ../data/ msgid "Configuration Mode" msgstr "Konfiguration" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "In Konflikt stehender Timer" @@ -339,31 +365,27 @@ msgstr "In Konflikt stehender Timer" msgid "Current version:" msgstr "Aktuelle Version:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Dänisch" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Datum" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Standard" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Löschen" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Eintrag löschen" @@ -371,7 +393,7 @@ msgstr "Eintrag löschen" msgid "Delete failed!" msgstr "Löschen fehlgeschlagen." -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Beschreibung" @@ -383,42 +405,38 @@ msgstr "Erkannte Festplatte:" msgid "Detected NIMs:" msgstr "Erkannte Tuner:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC-Modus" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC-Modus" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC-Wiederholungen" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Aus" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Bild in Bild ausschalten" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "Untertitel abschalten" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -456,7 +474,7 @@ msgstr "" "Wollen Sie jetzt eine Sicherung durchführen?\n" "Nach einem Druck auf OK bitte warten!" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "Möchten Sie die Wiedergabe an der letzten Stelle fortsetzen?" @@ -481,11 +499,11 @@ msgstr "Herunterladbare neue Plugins" msgid "Downloading plugin information. Please wait..." msgstr "Lade Plugin-Informationen herunter. Bitte warten..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Holländisch" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "O" @@ -494,48 +512,48 @@ msgstr "O" msgid "ERROR - failed to scan (%s)!" msgstr "FEHLER - Suche fehlgeschlagen (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Ost" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "Kanalliste bearbeiten" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Ein" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "5V für aktive Antenne" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "Jugendschutz anschalten" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Ende" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Endzeit" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Englisch" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Öffne Hauptmenü" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Wie Tuner A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "Geben Sie den Kanal-Pincode ein" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -545,44 +563,44 @@ msgstr "Ausführen eines externen Befehls:" msgid "Execution finished!!" msgstr "Ausführung beendet!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Schnelles DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoriten" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Finnisch" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Französisch" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequenz" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Fr" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Freitag" @@ -595,7 +613,8 @@ msgstr "Frontprozessor-Version: %d" msgid "Function not yet implemented" msgstr "Funktion noch nicht eingebaut" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 +#: ../data/ msgid "Gateway" msgstr "Gateway" @@ -603,7 +622,7 @@ msgstr "Gateway" msgid "Genre:" msgstr "Kategorie:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Deutsch" @@ -612,16 +631,16 @@ msgstr "Deutsch" msgid "Getting plugin information. Please wait..." msgstr "Hole Plugin-Informationen. Bitte warten..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "Gehe zu 0" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Auf Position drehen" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Guard Interval Modus" @@ -630,20 +649,21 @@ msgstr "Guard Interval Modus" msgid "Harddisk" msgstr "Festplatte" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hierarchy" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Wie viele Minuten möchten Sie aufnehmen?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 +#: ../data/ msgid "IP Address" msgstr "IP-Adresse" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Isländisch" @@ -652,17 +672,14 @@ msgid "Image-Upgrade" msgstr "Image-Aktualisierung" #: ../RecordTimer.py:166 -msgid "" -"In order to record a timer, the TV was switched to the recording service!\n" -msgstr "" -"Um die Timeraufnahme durchführen zu können, wurde auf den aufzunehmenden " -"Sender umgeschaltet!\n" +msgid "In order to record a timer, the TV was switched to the recording service!\n" +msgstr "Um die Timeraufnahme durchführen zu können, wurde auf den aufzunehmenden Sender umgeschaltet!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Erhöhte Spannung" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Initialisieren" @@ -674,75 +691,74 @@ msgstr "Initialisieren" msgid "Initializing Harddisk..." msgstr "Initialisiere Festplatte..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Sofortaufnahme" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversion" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italienisch" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" -#: ../lib/python/Screens/LanguageSelection.py:48 ../data/ +#: ../lib/python/Screens/LanguageSelection.py:48 +#: ../data/ msgid "Language selection" msgstr "Sprachauswahl" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 +#: ../data/ msgid "Latitude" msgstr "Breitengrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Links" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Ost-Limit" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "West-Limit" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Limits ausschalten" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Limits aktiviert" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 +#: ../data/ msgid "Longitude" msgstr "Längengrad" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Verbunden mit Tuner A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Manueller Transponder" @@ -751,35 +767,35 @@ msgstr "Manueller Transponder" msgid "Model: " msgstr "Modell:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulation" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Mo" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Montag bis Freitag" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Montag" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Verschiebe Bild in Bild" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Drehen nach Osten" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Drehen nach Westen" @@ -791,103 +807,101 @@ msgstr "Filmauswahl" msgid "Multi EPG" msgstr "Multi-EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Kann mehrere Sender entschlüsseln" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Multisat" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Nicht verfügbar" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Name" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 +#: ../data/ msgid "Nameserver" msgstr "Nameserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 +#: ../data/ msgid "Netmask" msgstr "Netzmaske" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Netzwerksuche" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Neu" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "Neuer Pincode" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Neue Version:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Vor" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nein" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Keine Festplatte gefunden oder\n" "Festplatte nicht initialisiert." -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Keine EPG-Daten gefunden. Starte unbegrenzte Aufnahme." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Keinen rotortauglichen Tuner gefunden." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Es wurde kein Tuner für die Benutzung eines Diseqc-Rotors eingestellt." -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Keins" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norwegisch" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Nichts angeschlossen" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -895,23 +909,22 @@ msgstr "" "Nichts zu suchen!\n" "Bitte den Tuner vor der Suche einstellen." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 +#: ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Aus" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "An" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Eins" @@ -923,27 +936,45 @@ msgstr "Online-Aktualisierung" msgid "Packet management" msgstr "Paketverwaltung" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 +#: ../data/ +msgid "Parental control" +msgstr "Jugendschutz" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "Jugendschutz-Typ" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Aufgenommene Filme abspielen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Bitte eine Erweiterung auswählen..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Bitte einen Namen für das neue Bouquet eingeben" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Bitte einen Namen für den neuen Marker eingeben" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "Bitte den korrekten Pincode eingeben" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "Bitte den alten Pincode eingeben" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Bitte einen Unterkanal zur Aufnahme auswählen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1361 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Bitte einen Unterkanal auswählen..." @@ -961,88 +992,120 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Bitte warten... Liste wird geladen..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polarität" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisation" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Port A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Port B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Port C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Rotor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Rotor Feinabstimmung" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Rotorbewegung" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Positionsspeicher" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Vordefinierte Satelliten" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "Vordefinierte Transponder" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "OK drücken zum Aktivieren" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Zum Starten der Suche OK drücken." -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Zum Starten der Suche OK drücken." -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Zurück" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "Kanäle schützen" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "Einstellungen schützen" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Provider" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Anbieter" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "Schnell" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "Schnellumschalter" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "Änderungen gehen verloren. Wirklich beenden?" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Vollendete Timer wirklich löschen?" +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "Diesen Timer wirklich löschen?" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 +msgid "Really exit the subservices quickzap?" +msgstr "Wirklich den Subservices-Schnellumschalter beenden?" + #: ../lib/python/Screens/EventView.py:74 msgid "Recording" msgstr "Aufnahmen" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "Nochmals den Pincode eingeben" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "Kanal-Pincode merken" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Plugins entfernen" @@ -1051,88 +1114,89 @@ msgstr "Plugins entfernen" msgid "Remove plugins" msgstr "Plugins entfernen" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Wiederholungstyp" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "Aktuelle Spielliste ersetzen" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Zurücksetzen" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Zurückspielen" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Rechts" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Sa" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 +#: ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellit" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satelliten" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Samstag" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Scanne Tuner" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Östlich suchen" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Westlich suchen" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Zweites Kabel vom Rotor" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Wähle Ton Modus" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Tonspur auswählen" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Kanal auswählen, von dem aufgenommen werden soll" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Sequenz-Wiederholung" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "Benötigte Kanalsuch-Art" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanäle" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Limits setzen" @@ -1140,11 +1204,15 @@ msgstr "Limits setzen" msgid "Settings" msgstr "Einstellungen" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "Kanäle beginnend mit Anfangsbuchstabe" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Radio-Wiedergabemodus..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "TV-Wiedergabemodus..." @@ -1156,12 +1224,7 @@ msgstr "Ähnlich" msgid "Similar broadcasts:" msgstr "Ähnliche Sendungen:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Einfach" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Einzeln" @@ -1169,21 +1232,21 @@ msgstr "Einzeln" msgid "Single EPG" msgstr "Einfach-EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Einzelnen Satelliten" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Einzelnen Transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Slot " -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Sockel " @@ -1197,24 +1260,24 @@ msgstr "" "\n" "Bitte einen anderen auswählen!" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Süd" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spanisch" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Aufnahme beginnen?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Startzeit" @@ -1222,108 +1285,122 @@ msgstr "Startzeit" msgid "Step " msgstr "Schritt " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Schritt nach Osten" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Schritt nach Westen" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Timeshift beenden?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Das Abspielen dieses Films beenden?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Position speichern" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "gespeicherte Position" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Unterkanal Liste..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "So" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Sonntag" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Tausche Bilder" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "Kanäle tauschen" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Schwedisch" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Zum nächsten Unterkanal schalten" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Zum vorhergehenden Unterkanal schalten" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symbolrate" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestrisch" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Region" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "Der eingegebene Pincode ist falsch" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "Die Pincodes unterscheiden sich." + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Drei" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Grenze" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Do" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Donnerstag" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Zeit" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Timer-Art" @@ -1331,67 +1408,67 @@ msgstr "Timer-Art" msgid "Title:" msgstr "Titel:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Heute" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Tone Modus" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Übertragungstyp" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transponder" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transponder type" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Di" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Dienstag" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Tunen" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tuner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Türkisch" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Zwei" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Art der Suche" @@ -1413,11 +1490,11 @@ msgstr "" "Bitte lesen Sie im Handbuch nach.\n" "Fehler: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Uncommitted DiSEqC Befehl" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Universal-LNB" @@ -1427,50 +1504,49 @@ msgstr "Aktualisierung beendet. Hier das Ergebnis:" #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:217 msgid "Updating... Please wait... This can take some minutes..." -msgstr "" -"Update wird durchgeführt. Bitte warten. Der Vorgang kann einige Minuten " -"dauern." +msgstr "Update wird durchgeführt. Bitte warten. Der Vorgang kann einige Minuten dauern." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 +#: ../data/ msgid "Use DHCP" msgstr "Adresse automatisch beziehen (DHCP)" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "USALS für diesen Sat benutzen" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Benutzerdefiniert" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "Videotext" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spannungs Modus" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "W" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Mi" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Mittwoch" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Wochentag" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "West" @@ -1478,11 +1554,7 @@ msgstr "West" msgid "Year:" msgstr "Jahr:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Ja" @@ -1490,7 +1562,7 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Sie können dies nicht löschen." -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Sie haben eine Spielliste ausgewählt" @@ -1502,23 +1574,23 @@ msgstr "" "Ihre Frontprozessor-Firmware muss geupdatet werden.\n" "Drücken Sie OK, um das Upgrade zu starten." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[Bouquet Editor]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[Favoriten Editor]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[Verschiebemodus]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Bouqueteditieren abbrechen" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Favoriteneditor abbrechen" @@ -1526,45 +1598,54 @@ msgstr "Favoriteneditor abbrechen" msgid "about to start" msgstr "startet gleich" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "Bouquet einfügen" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "Verzeichnis zur Spielliste hinzufügen" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "Datei zur Spielliste hinzufügen" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "Marker einfügen" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "Aufnahme hinzufügen (Aufnahmelänge eingeben)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "Aufnahme hinzufügen (unbegrenzt)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "Aufnahme hinzufügen (Aktuelle Sendung)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Zu Bouquet hinzufügen" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Kanal zu Favoriten hinzufügen" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "Jugendschutz anschalten" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "erweitert" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1574,39 +1655,47 @@ msgstr "" "Sicherung:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "zurück" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "Negativliste" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "Aufnahme ändern (Aufnahmelänge)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "links-zirkular" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "rechts-zirkular" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "Spielliste leeren" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "Komplex" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "Weiter" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "In Favoriten kopieren" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "täglich" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "Löschen" @@ -1614,16 +1703,16 @@ msgstr "Löschen" msgid "delete..." msgstr "löschen..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Verschiebemodus ausschalten" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "Nichts tun" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "Nicht aufnehmen" @@ -1631,30 +1720,34 @@ msgstr "Nicht aufnehmen" msgid "done!" msgstr "erledigt!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "leer/unbekannt" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Bouqueteditieren anschalten" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Favoriteneditor anschalten" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Verschiebemodus aktivieren" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Bouqueteditieren beenden" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Favoriteneditor beenden" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "gleich wie Sockel A" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "freier Festplattenspeicher" @@ -1663,31 +1756,32 @@ msgstr "freier Festplattenspeicher" msgid "full /etc directory" msgstr "komplettes /etc Verzeichnis" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "Box abschalten" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "Radio hören" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "Player ausblenden" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horizontal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 +#: ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "Modul initialisieren" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "Abspielmodus verlassen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "links" @@ -1696,7 +1790,11 @@ msgstr "links" msgid "list" msgstr "Liste" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "verbunden mit Sockel A" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manuell" @@ -1705,24 +1803,20 @@ msgstr "manuell" msgid "mins" msgstr "min" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "niemals" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "Nächster Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "Nächster Kanal im Verlauf" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "nein" @@ -1730,7 +1824,8 @@ msgstr "nein" msgid "no HDD found" msgstr "keine Festplatte gefunden" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 +#: ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Kein Modul gefunden" @@ -1738,19 +1833,23 @@ msgstr "Kein Modul gefunden" msgid "none" msgstr "keine" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "Nichts angeschlossen" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "aus" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "an" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "einmalig" @@ -1758,15 +1857,15 @@ msgstr "einmalig" msgid "only /etc/enigma2 directory" msgstr "nur /etc/enigma Verzeichnis" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "Kanalliste öffnen" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "Kanalliste öffnen(nach unten)" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "Kanalliste öffnen(nach oben)" @@ -1774,23 +1873,23 @@ msgstr "Kanalliste öffnen(nach oben)" msgid "pass" msgstr "Durchgang" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "Pause" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "bitte OK drücken wenn bereit" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "Vorheriger Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "Vorherhiger Kanal im Verlauf" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "Aufnehmen" @@ -1798,24 +1897,28 @@ msgstr "Aufnehmen" msgid "recording..." msgstr "nimmt auf..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "Entfernen aller Neu gefunden Kennzeichnungen" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "Eintrag entfernen" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "Jugendschutz ausschalten" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "Entfernen der Neu gefunden Kennzeichnung" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "wiederholend" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "rechts" @@ -1857,47 +1960,66 @@ msgstr "" msgid "scan state" msgstr "Status" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "Kanal-Pincode" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "Einstellungs-Pincode" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "Zeige EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "Sendungs-Details anzeigen" -#: ../lib/python/Screens/InfoBarGenerics.py:588 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" +msgstr "einfach" + +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "Rückwärts spulen" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "Vorwärts spulen" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "Timeshift starten" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "Aufnahme anhalten" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "Timeshift beenden" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "In Dateiliste wechseln" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "In Spielliste wechseln" -#: ../lib/python/Screens/Wizard.py:234 ../lib/python/Screens/Wizard.py:235 +#: ../lib/python/Screens/Wizard.py:234 +#: ../lib/python/Screens/Wizard.py:235 msgid "text" msgstr "Text" @@ -1905,53 +2027,61 @@ msgstr "Text" msgid "this recording" msgstr "Diese Aufnahme" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "Dieser Kanal ist durch einen Jugendschutz-Pincode geschützt." + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "unbekannter Service" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "Bis zum Neustart" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "benutzerdefiniert" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "Erweiterungen anzeigen" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "Aufnahmen anzeigen" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "warte auf CI..." + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "wartend" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "wöchentlich" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "Positivliste" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "ja" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "ja (Feeds behalten)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "Umschalten" @@ -1965,8 +2095,7 @@ msgstr "Kanalliste" #: ../data/ msgid "Backup is done. Please press OK to see the result." -msgstr "" -"Sicherung wurde durchgeführt. Bitte drücken Sie OK um das Ergebnis zu sehen." +msgstr "Sicherung wurde durchgeführt. Bitte drücken Sie OK um das Ergebnis zu sehen." #: ../data/ msgid "Service" @@ -1994,18 +2123,11 @@ msgstr "Sateinstellung" #: ../data/ msgid "" -"You need a PC connected to your dreambox. If you need further instructions, " -"please visit the website http://www.dm7025.de.\n" -"Your dreambox will now be halted. After you have performed the update " -"instructions from the website, your new firmware will ask you to restore " -"your settings." +"You need a PC connected to your dreambox. If you need further instructions, please visit the website http://www.dm7025.de.\n" +"Your dreambox will now be halted. After you have performed the update instructions from the website, your new firmware will ask you to restore your settings." msgstr "" -"Sie müssen einen PC mit Ihrer Dreambox verbunden haben. Wenn Sie " -"weiterführende Informationen benötigen, besuchen Sie die Webseite http://www." -"dm7025.de.\n" -"Die Dreambox wird nun ausgeschaltet. Nachdem Sie das Update wie auf der " -"Webseite beschrieben durchgeführt haben, wird Sie die neue Firmware fragen, " -"ob Sie die Einstellungen wiederherstellen wollen." +"Sie müssen einen PC mit Ihrer Dreambox verbunden haben. Wenn Sie weiterführende Informationen benötigen, besuchen Sie die Webseite http://www.dm7025.de.\n" +"Die Dreambox wird nun ausgeschaltet. Nachdem Sie das Update wie auf der Webseite beschrieben durchgeführt haben, wird Sie die neue Firmware fragen, ob Sie die Einstellungen wiederherstellen wollen." #: ../data/ msgid "Where do you want to backup your settings?" @@ -2019,6 +2141,10 @@ msgstr "Kanalsuche" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Hauptmenü" + #: ../data/ msgid "TV System" msgstr "Fernsehnorm" @@ -2032,12 +2158,8 @@ msgid "NEXT" msgstr "NÄCHSTE" #: ../data/ -msgid "" -"You do not seem to have a harddisk in your Dreambox. So backing up to a " -"harddisk is not an option for you." -msgstr "" -"Sie scheinen keine Festplatte in der Dreambox zu haben. Daher ist das " -"Sichern auf Festplatte nicht möglich." +msgid "You do not seem to have a harddisk in your Dreambox. So backing up to a harddisk is not an option for you." +msgstr "Sie scheinen keine Festplatte in der Dreambox zu haben. Daher ist das Sichern auf Festplatte nicht möglich." #: ../data/ msgid "Deep Standby" @@ -2060,20 +2182,16 @@ msgid "Sound" msgstr "Ton" #: ../data/ -msgid "" -"Use the up/down keys on your remote control to select an option. After that, " -"press OK." -msgstr "" -"Mit den hoch/runter Tasten können Sie eine Option auswählen. Danach bitte OK " -"drücken." +msgid "Use the up/down keys on your remote control to select an option. After that, press OK." +msgstr "Mit den hoch/runter Tasten können Sie eine Option auswählen. Danach bitte OK drücken." #: ../data/ msgid "Do you want to view a tutorial?" msgstr "Wollen Sie ein Tutorial sehen?" #: ../data/ -msgid "Setup" -msgstr "Einstellungen" +msgid "No, do nothing." +msgstr "Nein, nicht tun" #: ../data/ msgid "#000000" @@ -2096,8 +2214,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat-/Schüsseleinstellungen" +msgid "Startwizard" +msgstr "Startassistent" #: ../data/ msgid "#ffffff" @@ -2108,33 +2226,20 @@ msgid "" "You have chosen to backup to an usb drive. Better backup to the harddisk!\n" "Please press OK to start the backup now." msgstr "" -"Sie wollen eine Sicherung auf ein USB-Laufwerk durchführen. Die empfohlene " -"Methode\n" -"ist die Sicherung auf Festplatte! Bitte drücken Sie OK, um die Sicherung zu " -"starten." +"Sie wollen eine Sicherung auf ein USB-Laufwerk durchführen. Die empfohlene Methode\n" +"ist die Sicherung auf Festplatte! Bitte drücken Sie OK, um die Sicherung zu starten." #: ../data/ -msgid "The wizard is finished now." -msgstr "Der Assistent ist nun beendet." +msgid "Mute" +msgstr "Stummschaltung" #: ../data/ msgid "Service Searching" msgstr "Kanalsuche" #: ../data/ -msgid "Mute" -msgstr "Stummschaltung" - -#: ../data/ -msgid "" -"Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " -"the firmware of your Dreambox by providing a backup facility for your " -"current settings and a short explanation of how to upgrade your firmware." -msgstr "" -"Willkommen im Image-Upgrade-Assistenten. Der Assistent wird Ihnen bei der " -"Aktualisierung der Firmware helfen. Sie können mit diesem Assistenten die " -"aktuellen Einstellungen sichern und bekommen eine kleine Einweisung, wie Sie " -"die Firmware aktualisieren können." +msgid "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading the firmware of your Dreambox by providing a backup facility for your current settings and a short explanation of how to upgrade your firmware." +msgstr "Willkommen im Image-Upgrade-Assistenten. Der Assistent wird Ihnen bei der Aktualisierung der Firmware helfen. Sie können mit diesem Assistenten die aktuellen Einstellungen sichern und bekommen eine kleine Einweisung, wie Sie die Firmware aktualisieren können." #: ../data/ msgid "Keyboard Map" @@ -2148,6 +2253,16 @@ msgstr "Mehrere Bouquets erlauben" msgid "Keyboard Setup" msgstr "Tastatureinstellung" +#: ../data/ +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" +msgstr "" +"Mit den rechts-/links-Tasten können Sie Optionen ändern.\n" +"\n" +"Einstellungen für Tuner A" + #: ../data/ msgid "Dish" msgstr "Schüssel" @@ -2156,10 +2271,6 @@ msgstr "Schüssel" msgid "Margin after record" msgstr "Nachlauf hinter Aufnahme" -#: ../data/ -msgid "No, just start my dreambox" -msgstr "Nein, nur die Dreambox starten" - #: ../data/ msgid "#ffffffff" msgstr "" @@ -2189,30 +2300,25 @@ msgid "Manual Scan" msgstr "Manuelle Suche" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." -msgstr "" -"Willkommen.\n" -"\n" -"Der Startassistent wird Sie durch die Grundeinstellungen Ihrer Dreambox " -"führen.\n" -"Drücken Sie OK auf Ihrer Fernbedienung, um zum nächsten Schritt zu gelangen." +msgid "Timer Edit" +msgstr "Zeitgesteuerte Aufname" #: ../data/ msgid "RC Menu" msgstr "Fernbedienung" #: ../data/ -msgid "SNR:" -msgstr "SNR:" +msgid "No, just start my dreambox" +msgstr "Nein, nur die Dreambox starten" #: ../data/ msgid "Network..." msgstr "Netzwerk..." +#: ../data/ +msgid "Tuner configuration" +msgstr "Tuner Konfiguration" + #: ../data/ msgid "select Slot" msgstr "wähle Slot" @@ -2226,8 +2332,8 @@ msgid "Standby / Restart" msgstr "Standby / Neustart" #: ../data/ -msgid "Main menu" -msgstr "Hauptmenü" +msgid "Standby" +msgstr "Standby" #: ../data/ msgid "EPG Selection" @@ -2250,8 +2356,12 @@ msgid "Brightness" msgstr "Helligkeit" #: ../data/ -msgid "Standby" -msgstr "Standby" +msgid "Parental control services Editor" +msgstr "Jugendschutz-Kanaleditor" + +#: ../data/ +msgid "Yes, do another manual scan now" +msgstr "Ja, eine weitere manuelle Suche durchführen" #: ../data/ msgid "Activate network settings" @@ -2289,6 +2399,10 @@ msgstr "Plugin Browser" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "SNR:" + #: ../data/ msgid "Timeshift" msgstr "" @@ -2298,8 +2412,12 @@ msgid "Downloadable plugins" msgstr "Herunterladbare Erweiterungen" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" -msgstr "" +msgid "Subservices" +msgstr "Unterkanäle" + +#: ../data/ +msgid "Parental control setup" +msgstr "Jugendschutz-Einstellungen" #: ../data/ msgid "Timezone" @@ -2321,30 +2439,20 @@ msgstr "Springen" msgid "Common Interface" msgstr "Common Interface" -#: ../data/ -msgid "Tuner configuration" -msgstr "Tuner Konfiguration" - #: ../data/ msgid "Language..." msgstr "Sprache..." #: ../data/ -msgid "" -"Restoring the settings is done. Please press OK to activate the restored " -"settings now." -msgstr "" -"Die Einstellungen wurden wiederhergestellt. Drücken Sie OK um die " -"wiederhergestellten Einstellungen nun zu aktivieren." +msgid "Restoring the settings is done. Please press OK to activate the restored settings now." +msgstr "Die Einstellungen wurden wiederhergestellt. Drücken Sie OK um die wiederhergestellten Einstellungen nun zu aktivieren." #: ../data/ msgid "A/V Settings" msgstr "A/V-Einstellungen" #: ../data/ -msgid "" -"By pressing the OK Button on your remote control, the info bar is being " -"displayed." +msgid "By pressing the OK Button on your remote control, the info bar is being displayed." msgstr "Um die Infobar anzuzeigen, drücken sie OK." #: ../data/ @@ -2352,8 +2460,8 @@ msgid "Service scan" msgstr "Kanalsuche" #: ../data/ -msgid "Yes, do another manual scan now" -msgstr "Ja, eine weitere manuelle Suche durchführen" +msgid "The wizard is finished now." +msgstr "Der Assistent ist nun beendet." #: ../data/ msgid "LCD Setup" @@ -2380,12 +2488,8 @@ msgid "Contrast" msgstr "Kontrast" #: ../data/ -msgid "" -"You have chosen to backup to your harddisk. Please press OK to start the " -"backup now." -msgstr "" -"Sie wollen Ihre Einstellungen auf die Festplatte sichern. Bitte drücken Sie " -"OK, um die Sicherung zu starten." +msgid "You have chosen to backup to your harddisk. Please press OK to start the backup now." +msgstr "Sie wollen Ihre Einstellungen auf die Festplatte sichern. Bitte drücken Sie OK, um die Sicherung zu starten." #: ../data/ msgid "Timer selection" @@ -2397,14 +2501,10 @@ msgstr "Wiederholung" #: ../data/ msgid "" -"You have chosen to backup to a compact flash card. The card must be in the " -"slot. We do not verify if it is really used at the moment. So better backup " -"to the harddisk!\n" +"You have chosen to backup to a compact flash card. The card must be in the slot. We do not verify if it is really used at the moment. So better backup to the harddisk!\n" "Please press OK to start the backup now." msgstr "" -"Sie wollen auf eine Compact Flash-Karte sichern. Die Karte muss sich bereits " -"im Schacht befinden. Die bevorzugte Methode ist die Sicherung auf " -"Festplatte!\n" +"Sie wollen auf eine Compact Flash-Karte sichern. Die Karte muss sich bereits im Schacht befinden. Die bevorzugte Methode ist die Sicherung auf Festplatte!\n" "Bitte OK drücken, um die Sicherung trotzdem zu starten." #: ../data/ @@ -2424,12 +2524,8 @@ msgid "Timer log" msgstr "Timer Logbuch" #: ../data/ -msgid "" -"Your backup succeeded. We will now continue to explain the further upgrade " -"process." -msgstr "" -"Ihre Sicherung ist geglückt. Die Dreambox wird nun den weiteren " -"Aktualisierungs-Prozess erklären." +msgid "Your backup succeeded. We will now continue to explain the further upgrade process." +msgstr "Ihre Sicherung ist geglückt. Die Dreambox wird nun den weiteren Aktualisierungs-Prozess erklären." #: ../data/ msgid "PiPSetup" @@ -2465,9 +2561,7 @@ msgstr "Vorlauf bei Aufnahme (in Minuten)" #: ../data/ msgid "The backup failed. Please choose a different backup location." -msgstr "" -"Die Sicherung ist fehlgeschlagen. Bitte einen anderen Sicherungs-Ort " -"auswählen." +msgstr "Die Sicherung ist fehlgeschlagen. Bitte einen anderen Sicherungs-Ort auswählen." #: ../data/ msgid "Keymap" @@ -2478,11 +2572,8 @@ msgid "InfoBar" msgstr "Infoleiste" #: ../data/ -msgid "" -"The wizard can backup your current settings. Do you want to do a backup now?" -msgstr "" -"Der Assistent kann jetzt Ihre Einstellungen sichern. Wollen Sie dies nun " -"durchführen?" +msgid "The wizard can backup your current settings. Do you want to do a backup now?" +msgstr "Der Assistent kann jetzt Ihre Einstellungen sichern. Wollen Sie dies nun durchführen?" #: ../data/ msgid "Exit wizard" @@ -2492,10 +2583,6 @@ msgstr "Assistenten beenden" msgid "Media player" msgstr "Media Player" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "Ja, jetzt herunterfahren." - #: ../data/ msgid "Timer sanity error" msgstr "Fehler bei Timerprüfung" @@ -2516,10 +2603,6 @@ msgstr "Ihre Dreambox fährt nun herunter. Bitte warten Sie einen Moment..." msgid "WSS on 4:3" msgstr "WSS bei 4:3" -#: ../data/ -msgid "Subservices" -msgstr "Unterkanäle" - #: ../data/ msgid "Choose bouquet" msgstr "Bouquet wählen" @@ -2588,6 +2671,10 @@ msgstr "Anpassen" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "Pincode benötigt" + #: ../data/ msgid "VCR scart" msgstr "Scart-Videorekorder" @@ -2613,12 +2700,20 @@ msgid "Alpha" msgstr "Transparenz" #: ../data/ -msgid "Timer Edit" -msgstr "Zeitgesteuerte Aufname" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." +msgstr "" +"Willkommen.\n" +"\n" +"Der Startassistent wird Sie durch die Grundeinstellungen Ihrer Dreambox führen.\n" +"Drücken Sie OK auf Ihrer Fernbedienung, um zum nächsten Schritt zu gelangen." #: ../data/ -msgid "No, do nothing." -msgstr "Nein, nicht tun" +msgid "Setup" +msgstr "Einstellungen" #: ../data/ msgid "This is unsupported at the moment." @@ -2648,6 +2743,10 @@ msgstr "Zeit/Datum Eingabe" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat-/Schüsseleinstellungen" + #: ../data/ msgid "What do you want to scan?" msgstr "Was wollen Sie scannen?" @@ -2673,14 +2772,8 @@ msgid "NOW" msgstr "JETZT" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" -"Mit den rechts-/links-Tasten können Sie Optionen ändern.\n" -"\n" -"Einstellungen für Tuner A" +msgid "Yes, perform a shutdown now." +msgstr "Ja, jetzt herunterfahren." #: ../data/ msgid "#0064c7" @@ -2694,98 +2787,86 @@ msgstr "Medienwiedergabe" msgid "Do you want to do another manual service scan?" msgstr "Wollen Sie eine weitere manuelle Suche durchführen?" -#~ msgid "Really exit the subservices quickzap?" -#~ msgstr "Wirklich den Subservices-Schnellumschalter beenden?" - +#~ msgid "Cable provider" +#~ msgstr "Kabelanbieter" +#~ msgid "Classic" +#~ msgstr "klassisch" +#~ msgid "Default" +#~ msgstr "Standard" +#~ msgid "Equal to Socket A" +#~ msgstr "Wie Tuner A" +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Verbunden mit Tuner A" +#~ msgid "Nothing connected" +#~ msgstr "Nichts angeschlossen" +#~ msgid "Predefined satellite" +#~ msgstr "Vordefinierte Satelliten" +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Zweites Kabel vom Rotor" +#~ msgid "Simple" +#~ msgstr "Einfach" +#~ msgid "Swap services" +#~ msgstr "Tausche Bilder" #~ msgid "Subservices quickzap" #~ msgstr "Unterkanäle-Schnellumschalter" - #~ msgid "add bouquet..." #~ msgstr "Bouquet hinzufügen..." - #~ msgid "remove bouquet" #~ msgstr "Bouquet entfernen" - #~ msgid "remove service" #~ msgstr "Kanal löschen" - #~ msgid "Hide error windows" #~ msgstr "Fehlerfenster verstecken" - #~ msgid "Show Satposition" #~ msgstr "Zeige Satposition" - #~ msgid "Visualize positioner movement" #~ msgstr "Rotorbewegungen anzeigen" - #~ msgid "Audio / Video" #~ msgstr "Audio / Video" - #~ msgid "Record Splitsize" #~ msgstr "Splitgrösse der Aufnamen" - #~ msgid "Auto show inforbar" #~ msgstr "Automatisch die Infobar anzeigen" - #~ msgid "Network" #~ msgstr "Netzwerk" - #~ msgid "Invert" #~ msgstr "Invertieren" - #~ msgid "use power delta" #~ msgstr "Stromdelta verwenden" - #~ msgid "Fast zapping" #~ msgstr "Schnelles Umschalten" - #~ msgid "Usage Settings" #~ msgstr "Bedieneinstellungen" - #~ msgid "UHF Modulator" #~ msgstr "UHF-Modulator" - #~ msgid "Enigma1 like radiomode" #~ msgstr "Enigma1 ähnlicher Radio Modus" - #~ msgid "LCD" #~ msgstr "LCD" - #~ msgid "Ask before zapping" #~ msgstr "Vor Umschalten nachfragen" - #~ msgid "Parental Lock" #~ msgstr "Jugendschutz" - #~ msgid "Skip confirmations" #~ msgstr "Bestätigungen überspringen" - #~ msgid "Setup Lock" #~ msgstr "Setup-Sperre" - #~ msgid "Expert Setup" #~ msgstr "Experteneinstellungen" - #~ msgid "Language" #~ msgstr "Sprache" - #~ msgid "Parental Control" #~ msgstr "Jugendschutz" - #~ msgid "Multi bouquets" #~ msgstr "Mehrere Bouquets" - #~ msgid "Usage settings" #~ msgstr "Bedieneinstellungen" - #~ msgid "Timeshift not possible!" #~ msgstr "Timeshift nicht möglich!" - #~ msgid "open service list" #~ msgstr "Kanalliste öffnen" - #~ msgid "Timeshifting" #~ msgstr "Timeshift" - #~ msgid "Satelliteconfig" #~ msgstr "Satelliteneinstellungen" + diff --git a/po/en.po b/po/en.po index 17e3b34d..d1417a6a 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2005-11-17 20:53+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -32,9 +32,9 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -58,57 +58,69 @@ msgstr "" msgid "/var directory" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -120,38 +132,36 @@ msgid "" "Disable TV and try again?\n" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "" @@ -159,8 +169,8 @@ msgstr "" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "" @@ -172,37 +182,37 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -218,11 +228,11 @@ msgstr "" msgid "Backup Mode" msgstr "" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "" @@ -230,7 +240,7 @@ msgstr "" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "" @@ -238,18 +248,14 @@ msgstr "" msgid "CF Drive" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "" @@ -257,11 +263,32 @@ msgstr "" msgid "Capacity: " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "" @@ -269,54 +296,51 @@ msgstr "" msgid "Choose source" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "" @@ -324,31 +348,27 @@ msgstr "" msgid "Current version:" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "" @@ -356,7 +376,7 @@ msgstr "" msgid "Delete failed!" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "" @@ -368,42 +388,38 @@ msgstr "" msgid "Detected NIMs:" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -433,7 +449,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -456,11 +472,11 @@ msgstr "" msgid "Downloading plugin information. Please wait..." msgstr "" -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "" @@ -469,47 +485,47 @@ msgstr "" msgid "ERROR - failed to scan (%s)!" msgstr "" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" msgstr "" #: ../lib/python/Screens/Console.py:41 @@ -520,44 +536,44 @@ msgstr "" msgid "Execution finished!!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequency" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "" @@ -570,7 +586,7 @@ msgstr "" msgid "Function not yet implemented" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Gateway" @@ -578,7 +594,7 @@ msgstr "Gateway" msgid "Genre:" msgstr "" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "" @@ -587,16 +603,16 @@ msgstr "" msgid "Getting plugin information. Please wait..." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "" @@ -605,20 +621,20 @@ msgstr "" msgid "Harddisk" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP Address" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "" @@ -631,11 +647,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "" @@ -647,34 +663,34 @@ msgstr "" msgid "Initializing Harddisk..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversion" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -682,40 +698,36 @@ msgstr "" msgid "Language selection" msgstr "" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "" @@ -724,35 +736,35 @@ msgstr "" msgid "Model: " msgstr "" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "" @@ -764,123 +776,117 @@ msgstr "" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Nameserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Netmask" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "" @@ -892,28 +898,44 @@ msgstr "" msgid "Packet management" msgstr "" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -928,85 +950,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1014,6 +1056,14 @@ msgstr "" msgid "Recording" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "" @@ -1022,88 +1072,88 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellite" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "" @@ -1111,11 +1161,15 @@ msgstr "" msgid "Settings" msgstr "" -#: ../lib/python/Screens/InfoBar.py:48 -msgid "Show the radio player..." +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" msgstr "" #: ../lib/python/Screens/InfoBar.py:49 +msgid "Show the radio player..." +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1127,12 +1181,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "" @@ -1140,21 +1189,21 @@ msgstr "" msgid "Single EPG" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1165,24 +1214,24 @@ msgid "" "Please choose an other one." msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "" @@ -1190,108 +1239,122 @@ msgstr "" msgid "Step " msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "" @@ -1299,67 +1362,67 @@ msgstr "" msgid "Title:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "" @@ -1378,11 +1441,11 @@ msgid "" "Error: " msgstr "" -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "" @@ -1394,46 +1457,46 @@ msgstr "" msgid "Updating... Please wait... This can take some minutes..." msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "" @@ -1441,11 +1504,7 @@ msgstr "" msgid "Year:" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "" @@ -1453,7 +1512,7 @@ msgstr "" msgid "You cannot delete this!" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1463,23 +1522,23 @@ msgid "" "Press OK to start upgrade." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "" @@ -1487,45 +1546,54 @@ msgstr "" msgid "about to start" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1533,39 +1601,47 @@ msgid "" msgstr "" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "" @@ -1573,16 +1649,16 @@ msgstr "" msgid "delete..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "" @@ -1590,30 +1666,34 @@ msgstr "" msgid "done!" msgstr "" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "" @@ -1622,31 +1702,31 @@ msgstr "" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1655,7 +1735,11 @@ msgstr "" msgid "list" msgstr "" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "" @@ -1664,24 +1748,20 @@ msgstr "" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "" @@ -1689,7 +1769,7 @@ msgstr "" msgid "no HDD found" msgstr "" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "" @@ -1697,19 +1777,23 @@ msgstr "" msgid "none" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "" @@ -1717,15 +1801,15 @@ msgstr "" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1733,23 +1817,23 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "" @@ -1757,24 +1841,28 @@ msgstr "" msgid "recording..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1808,43 +1896,61 @@ msgstr "" msgid "scan state" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "" @@ -1856,53 +1962,61 @@ msgstr "" msgid "this recording" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "" @@ -1963,6 +2077,10 @@ msgstr "" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "" + #: ../data/ msgid "TV System" msgstr "" @@ -2036,7 +2154,7 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" +msgid "Startwizard" msgstr "" #: ../data/ @@ -2150,7 +2268,7 @@ msgid "Standby / Restart" msgstr "" #: ../data/ -msgid "Main menu" +msgid "Standby" msgstr "" #: ../data/ @@ -2174,7 +2292,7 @@ msgid "Brightness" msgstr "" #: ../data/ -msgid "Standby" +msgid "Parental control services Editor" msgstr "" #: ../data/ @@ -2233,6 +2351,10 @@ msgstr "" msgid "Subservices" msgstr "" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "" @@ -2494,6 +2616,10 @@ msgstr "" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "" @@ -2558,6 +2684,10 @@ msgstr "" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "" + #: ../data/ msgid "What do you want to scan?" msgstr "" diff --git a/po/enigma2.pot b/po/enigma2.pot index c65ca1e8..1c615f43 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-09-06 13:57+0200\n" +"POT-Creation-Date: 2006-10-11 01:06+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,9 +32,9 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -58,57 +58,69 @@ msgstr "" msgid "/var directory" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -120,38 +132,36 @@ msgid "" "Disable TV and try again?\n" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "" @@ -159,8 +169,8 @@ msgstr "" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:623 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "" @@ -172,37 +182,37 @@ msgstr "" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1336 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -218,11 +228,11 @@ msgstr "" msgid "Backup Mode" msgstr "" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "" @@ -230,7 +240,7 @@ msgstr "" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "" @@ -238,18 +248,14 @@ msgstr "" msgid "CF Drive" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:736 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "" @@ -257,11 +263,32 @@ msgstr "" msgid "Capacity: " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "" @@ -269,54 +296,51 @@ msgstr "" msgid "Choose source" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "" @@ -324,31 +348,27 @@ msgstr "" msgid "Current version:" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "" @@ -356,7 +376,7 @@ msgstr "" msgid "Delete failed!" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "" @@ -368,43 +388,35 @@ msgstr "" msgid "Detected NIMs:" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1163 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1120 +#: ../lib/python/Screens/InfoBarGenerics.py:1122 msgid "Disable subtitles" msgstr "" @@ -437,7 +449,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1605 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -460,11 +472,11 @@ msgstr "" msgid "Downloading plugin information. Please wait..." msgstr "" -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:744 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "" @@ -473,47 +485,47 @@ msgstr "" msgid "ERROR - failed to scan (%s)!" msgstr "" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" msgstr "" #: ../lib/python/Screens/Console.py:41 @@ -524,44 +536,44 @@ msgstr "" msgid "Execution finished!!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "" @@ -574,7 +586,7 @@ msgstr "" msgid "Function not yet implemented" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "" @@ -582,7 +594,7 @@ msgstr "" msgid "Genre:" msgstr "" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "" @@ -591,16 +603,16 @@ msgstr "" msgid "Getting plugin information. Please wait..." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "" @@ -609,20 +621,20 @@ msgstr "" msgid "Harddisk" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1302 -#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "" @@ -635,11 +647,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "" @@ -651,34 +663,34 @@ msgstr "" msgid "Initializing Harddisk..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1212 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -686,40 +698,36 @@ msgstr "" msgid "Language selection" msgstr "" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "" @@ -728,35 +736,35 @@ msgstr "" msgid "Model: " msgstr "" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1171 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "" @@ -768,123 +776,117 @@ msgstr "" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:728 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1322 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1255 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "" @@ -896,28 +898,44 @@ msgstr "" msgid "Packet management" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1085 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1473 -#: ../lib/python/Screens/SubservicesQuickzap.py:93 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -932,85 +950,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:619 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:726 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1469 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "" -#: ../lib/python/Screens/SubservicesQuickzap.py:104 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1018,6 +1056,14 @@ msgstr "" msgid "Recording" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "" @@ -1026,88 +1072,88 @@ msgstr "" msgid "Remove plugins" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:621 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1388 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1377 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:730 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "" @@ -1115,6 +1161,10 @@ msgstr "" msgid "Settings" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "" @@ -1131,12 +1181,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "" @@ -1144,21 +1189,21 @@ msgstr "" msgid "Single EPG" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1169,24 +1214,24 @@ msgid "" "Please choose an other one." msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "" @@ -1194,26 +1239,26 @@ msgstr "" msgid "Step " msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "" @@ -1221,81 +1266,95 @@ msgstr "" msgid "Stop playing this movie?" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1407 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1168 +#: ../lib/python/Screens/InfoBarGenerics.py:1170 msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1412 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1413 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:738 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "" @@ -1303,67 +1362,67 @@ msgstr "" msgid "Title:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "" @@ -1382,11 +1441,11 @@ msgid "" "Error: " msgstr "" -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "" @@ -1398,46 +1457,46 @@ msgstr "" msgid "Updating... Please wait... This can take some minutes..." msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1743 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:742 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "" @@ -1445,11 +1504,7 @@ msgstr "" msgid "Year:" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "" @@ -1457,7 +1512,7 @@ msgstr "" msgid "You cannot delete this!" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1467,23 +1522,23 @@ msgid "" "Press OK to start upgrade." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "" @@ -1491,45 +1546,54 @@ msgstr "" msgid "about to start" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1537,39 +1601,47 @@ msgid "" msgstr "" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "" @@ -1577,16 +1649,16 @@ msgstr "" msgid "delete..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "" @@ -1594,30 +1666,34 @@ msgstr "" msgid "done!" msgstr "" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "" @@ -1626,7 +1702,7 @@ msgstr "" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "" @@ -1634,15 +1710,15 @@ msgstr "" msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "" @@ -1650,7 +1726,7 @@ msgstr "" msgid "leave movie player..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1659,7 +1735,11 @@ msgstr "" msgid "list" msgstr "" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "" @@ -1668,24 +1748,20 @@ msgstr "" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "" @@ -1693,7 +1769,7 @@ msgstr "" msgid "no HDD found" msgstr "" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "" @@ -1701,19 +1777,23 @@ msgstr "" msgid "none" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "" @@ -1721,15 +1801,15 @@ msgstr "" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1737,23 +1817,23 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "" @@ -1761,24 +1841,28 @@ msgstr "" msgid "recording..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1812,43 +1896,61 @@ msgstr "" msgid "scan state" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "" @@ -1860,19 +1962,27 @@ msgstr "" msgid "this recording" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1033 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" @@ -1880,33 +1990,33 @@ msgstr "" msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "" @@ -1967,6 +2077,10 @@ msgstr "" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "" + #: ../data/ msgid "TV System" msgstr "" @@ -2016,7 +2130,7 @@ msgid "Do you want to view a tutorial?" msgstr "" #: ../data/ -msgid "Setup" +msgid "No, do nothing." msgstr "" #: ../data/ @@ -2040,7 +2154,7 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" +msgid "Startwizard" msgstr "" #: ../data/ @@ -2054,17 +2168,13 @@ msgid "" msgstr "" #: ../data/ -msgid "The wizard is finished now." +msgid "Mute" msgstr "" #: ../data/ msgid "Service Searching" msgstr "" -#: ../data/ -msgid "Mute" -msgstr "" - #: ../data/ msgid "" "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " @@ -2085,15 +2195,18 @@ msgid "Keyboard Setup" msgstr "" #: ../data/ -msgid "Dish" +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" msgstr "" #: ../data/ -msgid "Margin after record" +msgid "Dish" msgstr "" #: ../data/ -msgid "No, just start my dreambox" +msgid "Margin after record" msgstr "" #: ../data/ @@ -2123,11 +2236,7 @@ msgid "Manual Scan" msgstr "" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." +msgid "Timer Edit" msgstr "" #: ../data/ @@ -2135,13 +2244,17 @@ msgid "RC Menu" msgstr "" #: ../data/ -msgid "SNR:" +msgid "No, just start my dreambox" msgstr "" #: ../data/ msgid "Network..." msgstr "" +#: ../data/ +msgid "Tuner configuration" +msgstr "" + #: ../data/ msgid "select Slot" msgstr "" @@ -2155,7 +2268,7 @@ msgid "Standby / Restart" msgstr "" #: ../data/ -msgid "Main menu" +msgid "Standby" msgstr "" #: ../data/ @@ -2179,7 +2292,11 @@ msgid "Brightness" msgstr "" #: ../data/ -msgid "Standby" +msgid "Parental control services Editor" +msgstr "" + +#: ../data/ +msgid "Yes, do another manual scan now" msgstr "" #: ../data/ @@ -2218,6 +2335,10 @@ msgstr "" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "" + #: ../data/ msgid "Timeshift" msgstr "" @@ -2227,7 +2348,11 @@ msgid "Downloadable plugins" msgstr "" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" +msgid "Subservices" +msgstr "" + +#: ../data/ +msgid "Parental control setup" msgstr "" #: ../data/ @@ -2250,10 +2375,6 @@ msgstr "" msgid "Common Interface" msgstr "" -#: ../data/ -msgid "Tuner configuration" -msgstr "" - #: ../data/ msgid "Language..." msgstr "" @@ -2279,7 +2400,7 @@ msgid "Service scan" msgstr "" #: ../data/ -msgid "Yes, do another manual scan now" +msgid "The wizard is finished now." msgstr "" #: ../data/ @@ -2407,10 +2528,6 @@ msgstr "" msgid "Media player" msgstr "" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "" - #: ../data/ msgid "Timer sanity error" msgstr "" @@ -2431,10 +2548,6 @@ msgstr "" msgid "WSS on 4:3" msgstr "" -#: ../data/ -msgid "Subservices" -msgstr "" - #: ../data/ msgid "Choose bouquet" msgstr "" @@ -2503,6 +2616,10 @@ msgstr "" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "" @@ -2528,11 +2645,15 @@ msgid "Alpha" msgstr "" #: ../data/ -msgid "Timer Edit" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." msgstr "" #: ../data/ -msgid "No, do nothing." +msgid "Setup" msgstr "" #: ../data/ @@ -2563,6 +2684,10 @@ msgstr "" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "" + #: ../data/ msgid "What do you want to scan?" msgstr "" @@ -2588,10 +2713,7 @@ msgid "NOW" msgstr "" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" +msgid "Yes, perform a shutdown now." msgstr "" #: ../data/ diff --git a/po/es.po b/po/es.po index 8760f4ab..a845d251 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-07 13:45+0200\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-06-26 14:50+0200\n" "Last-Translator: Jose Juan Zapater \n" "Language-Team: none\n" @@ -65,51 +65,63 @@ msgstr "/usr/share/enigma2 directorio" msgid "/var directory" msgstr "directorio /var" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:764 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:139 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Salida" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:117 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -117,7 +129,7 @@ msgstr "" "Una grabación está actualmente ejecutándose.\n" "¿Qué quiere hacer?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:505 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -131,15 +143,15 @@ msgstr "" "¡Ha fallado la grabación!\n" "¿Desactivar TV y probar otra vez?\n" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1169 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Activar PiP" @@ -168,8 +180,8 @@ msgstr "Después del evento" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:624 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Todo" @@ -181,37 +193,37 @@ msgstr "Arábigo" msgid "Artist:" msgstr "Artista:" -#: ../lib/python/Screens/InfoBarGenerics.py:1340 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Opciones de sonido..." -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 #: ../lib/python/Screens/ScanSetup.py:372 -#: ../lib/python/Screens/ScanSetup.py:373 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:375 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:377 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:378 +#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 +#: ../lib/python/Screens/ScanSetup.py:386 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:592 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Búsqueda automática" -#: ../lib/python/Components/NimManager.py:763 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:745 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -227,11 +239,11 @@ msgstr "Localización Backup" msgid "Backup Mode" msgstr "Modo Backup" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Banda" -#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Ancho de banda" @@ -239,7 +251,7 @@ msgstr "Ancho de banda" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "Banda-C" @@ -247,18 +259,14 @@ msgstr "Banda-C" msgid "CF Drive" msgstr "Unidad CF" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:68 -msgid "Cable provider" -msgstr "Proveedor de cable" - -#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Cancelar" @@ -270,6 +278,23 @@ msgstr "Capacidad: " msgid "Catalan" msgstr "" +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Canal" @@ -286,46 +311,47 @@ msgstr "Elige origen" msgid "Cleanup" msgstr "Limpiar" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:227 -#: ../lib/python/Screens/ScanSetup.py:242 -#: ../lib/python/Screens/ScanSetup.py:578 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Limpiar antes de buscar" -#: ../lib/python/Screens/TimerEntry.py:315 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Borrar log" -#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Velocidad de código alta" -#: ../lib/python/Screens/ScanSetup.py:236 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Velocidad de código baja" -#: ../lib/python/Screens/Satconfig.py:119 -#: ../lib/python/Screens/Satconfig.py:121 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Orden de comando" -#: ../lib/python/Screens/Satconfig.py:115 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Comando DISEqC enviado" -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Completado" #: ../lib/python/Screens/Satconfig.py:47 -#: ../lib/python/Screens/Satconfig.py:144 ../data/ +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Modo Configuración" -#: ../lib/python/Screens/TimerEdit.py:203 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Grabación en conflict" @@ -333,11 +359,11 @@ msgstr "Grabación en conflict" msgid "Current version:" msgstr "Versión actual" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:349 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" @@ -345,7 +371,7 @@ msgstr "" msgid "Danish" msgstr "Danés" -#: ../lib/python/Screens/TimeDateInput.py:41 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Fecha" @@ -353,7 +379,7 @@ msgstr "Fecha" msgid "Delete" msgstr "Borrar" -#: ../lib/python/Screens/TimerEntry.py:312 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Borrar entrada" @@ -373,11 +399,11 @@ msgstr "HDD detectado:" msgid "Detected NIMs:" msgstr "NIMs detectados:" -#: ../lib/python/Components/NimManager.py:695 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "" -#: ../lib/python/Components/NimManager.py:696 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "" @@ -385,11 +411,11 @@ msgstr "" msgid "DiSEqC Mode" msgstr "Modo DiSEqC" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "modo DiSEqC" -#: ../lib/python/Screens/Satconfig.py:123 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "Repetir DiSEqC" @@ -397,11 +423,11 @@ msgstr "Repetir DiSEqC" msgid "Disable" msgstr "Desabilitar" -#: ../lib/python/Screens/InfoBarGenerics.py:1167 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Desactivar PiP" -#: ../lib/python/Screens/InfoBarGenerics.py:1124 +#: ../lib/python/Screens/InfoBarGenerics.py:1122 msgid "Disable subtitles" msgstr "" @@ -471,7 +497,7 @@ msgstr "Descargando información del plugin. Espere..." msgid "Dutch" msgstr "Alemán" -#: ../lib/python/Screens/ChannelSelection.py:745 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "" @@ -480,19 +506,27 @@ msgstr "" msgid "ERROR - failed to scan (%s)!" msgstr "ERROR - falló la búsqueda (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:780 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Este" +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + #: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Activar" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "Activar 5V para la antena activa" +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Fin" @@ -507,10 +541,14 @@ msgstr "HoraFin" msgid "English" msgstr "Inglés" -#: ../lib/python/Screens/InfoBarGenerics.py:341 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Entra al menú principal..." +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" + #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" msgstr "Progreso de ejecución:" @@ -519,18 +557,18 @@ msgstr "Progreso de ejecución:" msgid "Execution finished!!" msgstr "¡Ejecución terminó!" -#: ../lib/python/Screens/ScanSetup.py:192 -#: ../lib/python/Screens/ScanSetup.py:194 -#: ../lib/python/Screens/ScanSetup.py:224 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "DiSEqC Rapido" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoritos" @@ -542,9 +580,9 @@ msgstr "Finlandés" msgid "French" msgstr "Francés" -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:220 -#: ../lib/python/Screens/ScanSetup.py:231 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" @@ -595,7 +633,7 @@ msgstr "Ir a 0" msgid "Goto position" msgstr "Ir a la posición" -#: ../lib/python/Screens/ScanSetup.py:239 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Modo intervalo seguro" @@ -604,12 +642,12 @@ msgstr "Modo intervalo seguro" msgid "Harddisk" msgstr "Disco duro" -#: ../lib/python/Screens/ScanSetup.py:240 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Modo jerárquico" -#: ../lib/python/Screens/InfoBarGenerics.py:1306 -#: ../lib/python/Screens/InfoBarGenerics.py:1314 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "¿Cuántos minutos quiere grabar?" @@ -631,11 +669,11 @@ msgid "" msgstr "" "Obligatorio para grabar, la TV fue cambiada al canal de la grabación!\n" -#: ../lib/python/Screens/Satconfig.py:140 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Voltage incrementado" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Iniciar" @@ -647,13 +685,13 @@ msgstr "Inicializar" msgid "Initializing Harddisk..." msgstr "Inicializando Disco duro..." -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Grabación instantánea..." -#: ../lib/python/Screens/ScanSetup.py:188 -#: ../lib/python/Screens/ScanSetup.py:221 -#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversión" @@ -662,19 +700,19 @@ msgstr "Inversión" msgid "Italian" msgstr "Italiano" -#: ../lib/python/Screens/Satconfig.py:108 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:137 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:136 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -683,11 +721,11 @@ msgid "Language selection" msgstr "Selección de Idioma" #: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:127 ../data/ +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Izda" @@ -708,11 +746,11 @@ msgid "Limits on" msgstr "Límites on" #: ../lib/python/Screens/Satconfig.py:24 -#: ../lib/python/Screens/Satconfig.py:125 ../data/ +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Longitud" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Transpondedor manual" @@ -720,9 +758,9 @@ msgstr "Transpondedor manual" msgid "Model: " msgstr "Modelo: " -#: ../lib/python/Screens/ScanSetup.py:195 -#: ../lib/python/Screens/ScanSetup.py:223 -#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulación" @@ -740,7 +778,7 @@ msgstr "Lun-Vie" msgid "Monday" msgstr "Lunes" -#: ../lib/python/Screens/InfoBarGenerics.py:1175 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Mover PiP" @@ -760,19 +798,19 @@ msgstr "Menú de Películas" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:478 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "N/D" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:485 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" @@ -788,15 +826,19 @@ msgstr "DNS" msgid "Netmask" msgstr "Máscara" -#: ../lib/python/Screens/ScanSetup.py:225 -#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Escanear red" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Nuevo" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Nueva versión:" @@ -805,39 +847,39 @@ msgstr "Nueva versión:" msgid "Next" msgstr "Siguiente" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "¡HDD no encontrado o no inicializado!" -#: ../lib/python/Screens/InfoBarGenerics.py:1259 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "No hay info del evento, grabando indefinidamente." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:502 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "No he encontado motor capaz" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:517 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "No hay sintonizador configurado para usar con un motor diseqc!" -#: ../lib/python/Screens/ScanSetup.py:354 -#: ../lib/python/Screens/ScanSetup.py:362 -#: ../lib/python/Screens/ScanSetup.py:377 -#: ../lib/python/Components/NimManager.py:745 -#: ../lib/python/Components/NimManager.py:749 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 +#: ../lib/python/Components/NimManager.py:747 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Ninguno" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Norte" @@ -845,8 +887,8 @@ msgstr "Norte" msgid "Norwegian" msgstr "Noruego" -#: ../lib/python/Screens/ScanSetup.py:550 -#: ../lib/python/Screens/ScanSetup.py:653 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -854,21 +896,21 @@ msgstr "" "Nada a buscar!\n" "Por favor ponga la configuración del sintonizador antes de buscar un canal." -#: ../lib/python/Screens/Setup.py:83 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "" -#: ../lib/python/Components/NimManager.py:740 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Uno" @@ -880,28 +922,44 @@ msgstr "Actualización-Online" msgid "Packet management" msgstr "Manejo de paquete" +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Reproducir películas grabadas..." -#: ../lib/python/Screens/InfoBarGenerics.py:1089 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Por favor, elija una extensión..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Introduzca un nombre para la nueva lista" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Pon un nombre para el nuevo marcador" -#: ../lib/python/Screens/TimerEntry.py:289 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Por fafor selecciona un subservicio a grabar..." -#: ../lib/python/Screens/InfoBarGenerics.py:1477 -#: ../lib/python/Screens/SubservicesQuickzap.py:93 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Por favor, selecciona un subservicio..." @@ -919,12 +977,12 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Espere... Cargando lista..." -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:200 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polaridad" -#: ../lib/python/Components/NimManager.py:739 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarización" @@ -944,7 +1002,7 @@ msgstr "Puerto C" msgid "Port D" msgstr "Puerto D" -#: ../lib/python/Components/NimManager.py:697 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Motor" @@ -960,19 +1018,19 @@ msgstr "Movimiento del motor" msgid "Positioner storage" msgstr "Almacenar motor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:420 -msgid "Predefined satellite" -msgstr "Satélite predefinido" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" #: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Pulse OK para activar la configuración." -#: ../lib/python/Screens/ScanSetup.py:593 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Pulse OK para buscar" -#: ../lib/python/Screens/ScanSetup.py:148 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Pulse OK para comenzar la búsqued" @@ -980,24 +1038,44 @@ msgstr "Pulse OK para comenzar la búsqued" msgid "Prev" msgstr "Ant" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Proveedor" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Proveedores" -#: ../lib/python/Screens/InfoBarGenerics.py:1473 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "Zapeo rápido" +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + #: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "¿Quiere borrar las programaciones terminadas?" -#: ../lib/python/Screens/SubservicesQuickzap.py:104 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "¿Quieres salir del zapeo rápido de subservicios?" @@ -1005,6 +1083,14 @@ msgstr "¿Quieres salir del zapeo rápido de subservicios?" msgid "Recording" msgstr "Grabando" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Borrar Plugins" @@ -1021,16 +1107,16 @@ msgstr "Tipo de repetición" msgid "Replace current playlist" msgstr "Reemplazar la actual lista" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Resetear" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Restaurar" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Dcha" @@ -1039,16 +1125,16 @@ msgstr "Dcha" msgid "Sat" msgstr "Sáb" -#: ../lib/python/Screens/ScanSetup.py:186 -#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 #: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 -#: ../lib/python/Screens/Satconfig.py:146 +#: ../lib/python/Screens/Satconfig.py:145 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satélite" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satélites" @@ -1057,8 +1143,8 @@ msgstr "Satélites" msgid "Saturday" msgstr "Sábado" -#: ../lib/python/Screens/ScanSetup.py:584 -#: ../lib/python/Screens/ScanSetup.py:589 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Escanear NIM" @@ -1070,23 +1156,27 @@ msgstr "Buscar este" msgid "Search west" msgstr "Buscar oeste" -#: ../lib/python/Screens/InfoBarGenerics.py:1392 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Seleccionar modo audio" -#: ../lib/python/Screens/InfoBarGenerics.py:1381 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Seleccionar pista de audio" -#: ../lib/python/Screens/TimerEntry.py:210 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Seleccione canal del que grabar" -#: ../lib/python/Screens/Satconfig.py:117 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Repetir secuencia" -#: ../lib/python/Screens/ChannelSelection.py:731 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Canales" @@ -1098,6 +1188,10 @@ msgstr "Límites activados" msgid "Settings" msgstr "Configuraciones" +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Reproductor de radio..." @@ -1114,7 +1208,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "Emisiones similares:" -#: ../lib/python/Components/NimManager.py:693 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Uno" @@ -1122,21 +1216,21 @@ msgstr "Uno" msgid "Single EPG" msgstr "EPG Sencillo" -#: ../lib/python/Screens/ScanSetup.py:329 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Satélite único" -#: ../lib/python/Screens/ScanSetup.py:329 -#: ../lib/python/Screens/ScanSetup.py:330 -#: ../lib/python/Screens/ScanSetup.py:331 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Transponder único" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:547 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1150,8 +1244,8 @@ msgstr "" "\n" "Por favor, elige otro." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Sur" @@ -1163,7 +1257,7 @@ msgstr "Español" msgid "Start" msgstr "Inicio" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "¿Iniciar grabación?" @@ -1183,7 +1277,7 @@ msgstr "Paso este" msgid "Step west" msgstr "Paso oeste" -#: ../lib/python/Screens/InfoBarGenerics.py:1380 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stéreo" @@ -1194,7 +1288,7 @@ msgstr "Stéreo" msgid "Stop" msgstr "Parar" -#: ../lib/python/Screens/InfoBarGenerics.py:959 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "¿Parar grabación de pausa?" @@ -1206,11 +1300,11 @@ msgstr "¿Parar reproducción de esta película?" msgid "Store position" msgstr "Almacenar posición" -#: ../lib/python/Screens/Satconfig.py:105 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Posición almacenada" -#: ../lib/python/Screens/InfoBarGenerics.py:1411 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Lista de subservicios..." @@ -1224,7 +1318,7 @@ msgstr "Dom" msgid "Sunday" msgstr "Domingo" -#: ../lib/python/Screens/InfoBarGenerics.py:1172 +#: ../lib/python/Screens/InfoBarGenerics.py:1170 msgid "Swap Services" msgstr "" @@ -1232,33 +1326,47 @@ msgstr "" msgid "Swedish" msgstr "Sueco" -#: ../lib/python/Screens/InfoBarGenerics.py:1416 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Cambiar al subservicio siguiente" -#: ../lib/python/Screens/InfoBarGenerics.py:1417 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Cambiar al subservicio anterior" -#: ../lib/python/Screens/ScanSetup.py:189 -#: ../lib/python/Screens/ScanSetup.py:222 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Velocidad de símbolo" -#: ../lib/python/Screens/ChannelSelection.py:739 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestre" -#: ../lib/python/Screens/Satconfig.py:72 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Proveedor terrestre" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tres" -#: ../lib/python/Screens/Satconfig.py:138 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Umbral" @@ -1272,7 +1380,7 @@ msgstr "Jue" msgid "Thursday" msgstr "Jueves" -#: ../lib/python/Screens/TimeDateInput.py:42 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Hora" @@ -1289,19 +1397,19 @@ msgstr "Título:" msgid "Today" msgstr "Hoy" -#: ../lib/python/Screens/Satconfig.py:100 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Modo tono" -#: ../lib/python/Screens/Satconfig.py:114 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:694 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:238 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Modo trasmisión" @@ -1309,7 +1417,7 @@ msgstr "Modo trasmisión" msgid "Transponder" msgstr "Transpondedor" -#: ../lib/python/Screens/ScanSetup.py:184 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Tipo de transporder" @@ -1329,7 +1437,7 @@ msgstr "Martes" msgid "Tune" msgstr "Tono" -#: ../lib/python/Screens/ScanSetup.py:166 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Sintonizador" @@ -1338,17 +1446,17 @@ msgstr "Sintonizador" msgid "Turkish" msgstr "Turco" -#: ../lib/python/Components/NimManager.py:778 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Dos" -#: ../lib/python/Screens/ScanSetup.py:172 -#: ../lib/python/Screens/ScanSetup.py:175 -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Tipo de búsqued" -#: ../lib/python/Components/NimManager.py:705 +#: ../lib/python/Components/NimManager.py:707 msgid "USALS" msgstr "" @@ -1366,11 +1474,11 @@ msgstr "" "Por favor mire el manual de usuario.\n" "Error: " -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Comando DiSEqC no enviado" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "LNB Universal" @@ -1386,11 +1494,11 @@ msgstr "Actualizando... Espere... Esto puede tardar varios minutos..." msgid "Use DHCP" msgstr "Usar DHCP" -#: ../lib/python/Screens/Satconfig.py:102 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Usar usals para este sat" -#: ../lib/python/Components/NimManager.py:757 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Definido por el usuario" @@ -1398,11 +1506,11 @@ msgstr "Definido por el usuario" msgid "View teletext..." msgstr "Ver teletexto..." -#: ../lib/python/Screens/Satconfig.py:99 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Modo voltaje" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" @@ -1420,8 +1528,8 @@ msgstr "Miércoles" msgid "Weekday" msgstr "DiaSemana" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:780 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Oeste" @@ -1429,7 +1537,7 @@ msgstr "Oeste" msgid "Year:" msgstr "Año:" -#: ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Si" @@ -1449,23 +1557,23 @@ msgstr "" "El firmware del frontprocessor debe ser actualizado.\n" "Pulsa OK para comenzar la actualización." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[editar lista]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[editar favoritos]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[modo mover]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "abortar la edición de listas" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "abortar la edición de favoritos" @@ -1473,7 +1581,7 @@ msgstr "abortar la edición de favoritos" msgid "about to start" msgstr "para comenzar" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "añadir lista" @@ -1485,35 +1593,39 @@ msgstr "añadir el directorio a la lista" msgid "add file to playlist" msgstr "añadir fichero a la lista" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "añadir marcador" +#: ../lib/python/Screens/InfoBarGenerics.py:1328 #: ../lib/python/Screens/InfoBarGenerics.py:1330 -#: ../lib/python/Screens/InfoBarGenerics.py:1332 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:1332 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:1332 msgid "add recording (stop after current event)" msgstr "añadir grabación (sólo evento actual)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "añadir canal a la lista" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "añadir canal a favoritos" -#: ../lib/python/Components/NimManager.py:662 -#: ../lib/python/Components/NimManager.py:673 +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 msgid "advanced" msgstr "" @@ -1526,19 +1638,23 @@ msgstr "" "el siguiente backup:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "atrás" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "cambiar la grabación (duración)" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "circular izda" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circular dcha" @@ -1546,11 +1662,15 @@ msgstr "circular dcha" msgid "clear playlist" msgstr "limpiar lista" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "continuar" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "copiar a favoritos" @@ -1566,16 +1686,16 @@ msgstr "borrar" msgid "delete..." msgstr "borrar..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "inabilitar modo movimiento" #: ../lib/python/Screens/TimerEntry.py:83 -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "no hacer nada" -#: ../lib/python/Screens/InfoBarGenerics.py:1332 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "no grabar" @@ -1583,31 +1703,31 @@ msgstr "no grabar" msgid "done!" msgstr "¡hecho!" -#: ../lib/python/Components/NimManager.py:549 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "vacío/desconocido" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "habilitar edición de lista" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "habilitar edición de favoritos" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "habilitar modo movimiento" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "fin de edición de listas" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "fin edición de favoritos" -#: ../lib/python/Components/NimManager.py:668 +#: ../lib/python/Components/NimManager.py:670 msgid "equal to Socket A" msgstr "" @@ -1631,11 +1751,11 @@ msgstr "escuchar radio..." msgid "hide player" msgstr "ocultar reproductor" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "iniciar módulo" @@ -1643,7 +1763,7 @@ msgstr "iniciar módulo" msgid "leave movie player..." msgstr "salir del reproductor de películas..." -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "izquierda" @@ -1652,11 +1772,11 @@ msgstr "izquierda" msgid "list" msgstr "lista" -#: ../lib/python/Components/NimManager.py:669 +#: ../lib/python/Components/NimManager.py:671 msgid "loopthrough to socket A" msgstr "" -#: ../lib/python/Components/NimManager.py:706 +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "" @@ -1665,16 +1785,20 @@ msgstr "" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "canal siguiente" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "canal siguiente en historia" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "" @@ -1682,7 +1806,7 @@ msgstr "" msgid "no HDD found" msgstr "disco no encontrado" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "módulo no encontrado" @@ -1690,19 +1814,19 @@ msgstr "módulo no encontrado" msgid "none" msgstr "ninguno" -#: ../lib/python/Components/NimManager.py:670 +#: ../lib/python/Components/NimManager.py:672 msgid "nothing connected" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:351 -#: ../lib/python/Screens/ScanSetup.py:360 -#: ../lib/python/Screens/ScanSetup.py:368 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "" @@ -1714,15 +1838,15 @@ msgstr "una vez" msgid "only /etc/enigma2 directory" msgstr "solo el directorio /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "abrir lista de servicios" -#: ../lib/python/Screens/InfoBarGenerics.py:256 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "abrir lista de servicios(abajo)" -#: ../lib/python/Screens/InfoBarGenerics.py:255 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "abrir lista de servicios(arriba)" @@ -1730,19 +1854,19 @@ msgstr "abrir lista de servicios(arriba)" msgid "pass" msgstr "pasa" -#: ../lib/python/Screens/InfoBarGenerics.py:581 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "pausa" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "pulse OK cuando esté preparado" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "canal anterior" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "canal anterior en historia" @@ -1754,16 +1878,20 @@ msgstr "grabar" msgid "recording..." msgstr "grabando..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "borrar todas marcas encontradas" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "eliminar entrada" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "borrar nueva marca encontrada" @@ -1771,7 +1899,7 @@ msgstr "borrar nueva marca encontrada" msgid "repeated" msgstr "repetido" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "derecha" @@ -1813,44 +1941,53 @@ msgstr "" msgid "scan state" msgstr "estado de la búsqueda" -#: ../lib/python/Components/NimManager.py:671 +#: ../lib/python/Components/NimManager.py:673 msgid "second cable of motorized LNB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:393 +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "mostrar EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:355 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "mostrar detalles del evento" -#: ../lib/python/Components/NimManager.py:661 -#: ../lib/python/Components/NimManager.py:672 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 msgid "simple" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:587 +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "saltar adelante" -#: ../lib/python/Screens/InfoBarGenerics.py:584 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "saltar atrás" -#: ../lib/python/Screens/InfoBarGenerics.py:901 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "comenzar pausa" -#: ../lib/python/Screens/InfoBarGenerics.py:1391 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "stéreo" -#: ../lib/python/Screens/InfoBarGenerics.py:1330 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "parar grabación" -#: ../lib/python/Screens/InfoBarGenerics.py:902 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "parar pausa" @@ -1870,19 +2007,27 @@ msgstr "texto" msgid "this recording" msgstr "esta grabación" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "servicio desconocido" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + #: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "definido por el usuario" -#: ../lib/python/Screens/ScanSetup.py:353 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1037 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "ver extensiones..." @@ -1890,6 +2035,10 @@ msgstr "ver extensiones..." msgid "view recordings..." msgstr "ver grabaciones..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "esperando" @@ -1898,13 +2047,17 @@ msgstr "esperando" msgid "weekly" msgstr "semanalmente" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "si" -#: ../lib/python/Screens/ScanSetup.py:332 -#: ../lib/python/Screens/ScanSetup.py:577 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "si (conserva feeds)" @@ -1973,6 +2126,10 @@ msgstr "Búsqueda de canal" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "Menú principal" + #: ../data/ msgid "TV System" msgstr "Sistema de TV" @@ -2026,8 +2183,8 @@ msgid "Do you want to view a tutorial?" msgstr "¿Quiere ver un tutorial?" #: ../data/ -msgid "Setup" -msgstr "Config" +msgid "No, do nothing." +msgstr "No hacer nada" #: ../data/ msgid "#000000" @@ -2050,8 +2207,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat / Config Ant" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2066,17 +2223,13 @@ msgstr "" "Pulse OK para comentar el backup ahora." #: ../data/ -msgid "The wizard is finished now." -msgstr "El asistente ha finalizado ahora." +msgid "Mute" +msgstr "Silencio" #: ../data/ msgid "Service Searching" msgstr "Buscando Canal" -#: ../data/ -msgid "Mute" -msgstr "Silencio" - #: ../data/ msgid "" "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " @@ -2100,6 +2253,16 @@ msgstr "Habilitar multiples listas" msgid "Keyboard Setup" msgstr "Config Teclado" +#: ../data/ +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" +msgstr "" +"Use los botones izq/der para cambiar una opción.\n" +"\n" +"Por favor configure tuner A" + #: ../data/ msgid "Dish" msgstr "Antena" @@ -2108,10 +2271,6 @@ msgstr "Antena" msgid "Margin after record" msgstr "Margen despues de grabar" -#: ../data/ -msgid "No, just start my dreambox" -msgstr "No, sólo arranca mi dreambox" - #: ../data/ msgid "#ffffffff" msgstr "" @@ -2141,30 +2300,25 @@ msgid "Manual Scan" msgstr "Búsqueda Manual" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." -msgstr "" -"Bienvenido.\n" -"\n" -"Este asistente le guiará a través de una configuración básica de su " -"Dreambox.\n" -"Pulse el botón OK de su mando para ir al siguiente paso." +msgid "Timer Edit" +msgstr "Editar Hora" #: ../data/ msgid "RC Menu" msgstr "Menú RC" #: ../data/ -msgid "SNR:" -msgstr "" +msgid "No, just start my dreambox" +msgstr "No, sólo arranca mi dreambox" #: ../data/ msgid "Network..." msgstr "Red..." +#: ../data/ +msgid "Tuner configuration" +msgstr "Configuracion sintonizador" + #: ../data/ msgid "select Slot" msgstr "seleccionar Slot" @@ -2178,8 +2332,8 @@ msgid "Standby / Restart" msgstr "Reposo / Reiniciar" #: ../data/ -msgid "Main menu" -msgstr "Menú principal" +msgid "Standby" +msgstr "Reposo" #: ../data/ msgid "EPG Selection" @@ -2202,8 +2356,12 @@ msgid "Brightness" msgstr "Brillo" #: ../data/ -msgid "Standby" -msgstr "Reposo" +msgid "Parental control services Editor" +msgstr "" + +#: ../data/ +msgid "Yes, do another manual scan now" +msgstr "Si, hacer otra búsqueda manual ahora" #: ../data/ msgid "Activate network settings" @@ -2241,6 +2399,10 @@ msgstr "Plugin navegador" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "" + #: ../data/ msgid "Timeshift" msgstr "Pausa" @@ -2250,7 +2412,11 @@ msgid "Downloadable plugins" msgstr "Plugins descargables" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" +msgid "Subservices" +msgstr "Subservicios" + +#: ../data/ +msgid "Parental control setup" msgstr "" #: ../data/ @@ -2273,10 +2439,6 @@ msgstr "Posicionar" msgid "Common Interface" msgstr "Interface común" -#: ../data/ -msgid "Tuner configuration" -msgstr "Configuracion sintonizador" - #: ../data/ msgid "Language..." msgstr "Lenguaje..." @@ -2305,8 +2467,8 @@ msgid "Service scan" msgstr "Buscar canales" #: ../data/ -msgid "Yes, do another manual scan now" -msgstr "Si, hacer otra búsqueda manual ahora" +msgid "The wizard is finished now." +msgstr "El asistente ha finalizado ahora." #: ../data/ msgid "LCD Setup" @@ -2443,10 +2605,6 @@ msgstr "Salir del asistente" msgid "Media player" msgstr "Reproductor" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "Si, realiza el apagado ahora." - #: ../data/ msgid "Timer sanity error" msgstr "Error de grabación sanity" @@ -2467,10 +2625,6 @@ msgstr "Tu dreambox está reiniciando. Espera un momento..." msgid "WSS on 4:3" msgstr "WSS en 4:3" -#: ../data/ -msgid "Subservices" -msgstr "Subservicios" - #: ../data/ msgid "Choose bouquet" msgstr "Elegir lista" @@ -2539,6 +2693,10 @@ msgstr "Parametrizar" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Euroconector VCR" @@ -2564,12 +2722,21 @@ msgid "Alpha" msgstr "" #: ../data/ -msgid "Timer Edit" -msgstr "Editar Hora" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." +msgstr "" +"Bienvenido.\n" +"\n" +"Este asistente le guiará a través de una configuración básica de su " +"Dreambox.\n" +"Pulse el botón OK de su mando para ir al siguiente paso." #: ../data/ -msgid "No, do nothing." -msgstr "No hacer nada" +msgid "Setup" +msgstr "Config" #: ../data/ msgid "This is unsupported at the moment." @@ -2599,6 +2766,10 @@ msgstr "Entrada Hora/Fecha" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat / Config Ant" + #: ../data/ msgid "What do you want to scan?" msgstr "¿Qué quieres buscar?" @@ -2624,14 +2795,8 @@ msgid "NOW" msgstr "AHORA" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" -"Use los botones izq/der para cambiar una opción.\n" -"\n" -"Por favor configure tuner A" +msgid "Yes, perform a shutdown now." +msgstr "Si, realiza el apagado ahora." #: ../data/ msgid "#0064c7" @@ -2645,6 +2810,12 @@ msgstr "Reproductor" msgid "Do you want to do another manual service scan?" msgstr "¿Quieres hacer otra búsqueda manual?" +#~ msgid "Cable provider" +#~ msgstr "Proveedor de cable" + +#~ msgid "Predefined satellite" +#~ msgstr "Satélite predefinido" + #~ msgid "Classic" #~ msgstr "Clásico" diff --git a/po/fi.po b/po/fi.po index 85214f77..b88dc762 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-07-20 23:11+0200\n" "Last-Translator: Sauli Halttu \n" "Language-Team: none\n" @@ -32,9 +32,9 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%m.%Y" @@ -60,51 +60,63 @@ msgstr "/usr/share/enigma2 hakemisto" msgid "/var directory" msgstr "/var hakemisto" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V lähtö" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -112,7 +124,7 @@ msgstr "" "Tallennus on parhaillaan käynnissä.\n" "Mitä haluat tehdä?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -128,38 +140,36 @@ msgstr "" "Ajastintallennus epäonnistui!\n" "Yritä uudelleen?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Käynnistä Kuva Kuvassa-toiminto" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Lisää" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "Lisää tiedostot soittolistalle" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Lisää ajastin" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Edistyneille" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Tapahtuman jälkeen" @@ -167,8 +177,8 @@ msgstr "Tapahtuman jälkeen" msgid "Album:" msgstr "Albumi:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Kaikki" @@ -180,37 +190,37 @@ msgstr "Arabialainen" msgid "Artist:" msgstr "Artisti:" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Äänivalinnat" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Automaattinen" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Automaattihaku" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -226,11 +236,11 @@ msgstr "Mihin tallennetaan" msgid "Backup Mode" msgstr "Mitä tallennetaan" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Taajuus" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Kaistanleveys" @@ -238,7 +248,7 @@ msgstr "Kaistanleveys" msgid "Bus: " msgstr "Väylä:" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-taajuusalue" @@ -246,18 +256,14 @@ msgstr "C-taajuusalue" msgid "CF Drive" msgstr "CF-Asema" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kaapeli" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kaapeli-TV operaattori" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Peruuta" @@ -265,11 +271,32 @@ msgstr "Peruuta" msgid "Capacity: " msgstr "Kapasiteetti:" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanava:" @@ -277,54 +304,51 @@ msgstr "Kanava:" msgid "Choose source" msgstr "Valitse lähde" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Klassinen" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Puhdista" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Tyhjennä ennen hakua" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Tyhjennä loki" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Koodin taso korkea" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Koodin taso alhainen" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Käskyjen järjestys" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Committed DiSEqC-käsky" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Valmis" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Muokkaustila" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Ajastinkonflikti" @@ -332,31 +356,27 @@ msgstr "Ajastinkonflikti" msgid "Current version:" msgstr "Nykyinen versio:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Tanska" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Päiväys" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Oletus" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Poista" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Poista valinta" @@ -364,7 +384,7 @@ msgstr "Poista valinta" msgid "Delete failed!" msgstr "Poisto epäonnistui!" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Kuvaus" @@ -376,42 +396,38 @@ msgstr "Löytyi kiintolevy:" msgid "Detected NIMs:" msgstr "Löytyneet NIMit:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC-Tila" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC-tila" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC toistoja" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Pois" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Sulje Kuva Kuvassa-toiminto" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -449,7 +465,7 @@ msgstr "" "Haluatko varmasti luoda varmuuskopion?\n" "Paina OK ja odota!" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -474,11 +490,11 @@ msgstr "Uudet ladattavat lisäosat" msgid "Downloading plugin information. Please wait..." msgstr "Ladataan tietoja lisäosista. Odota..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Hollantilainen" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "" @@ -487,48 +503,48 @@ msgstr "" msgid "ERROR - failed to scan (%s)!" msgstr "VIRHE - haku epäonnistui (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Itä" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Päälle" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "Syötä 5V aktiiviselle antennille" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Lopeta" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Loppuaika" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Englantilainen" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Mene päävalikkoon..." -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Kuten Kanta A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -538,44 +554,44 @@ msgstr "Toimenpiteen edistyminen:" msgid "Execution finished!!" msgstr "Toimenpide valmis!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Nopea DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Suosikit" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Suomalainen" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Ranskalainen" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Taajuus" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Pe" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Perjantai" @@ -588,7 +604,7 @@ msgstr "Front -prosessorin versio: %d" msgid "Function not yet implemented" msgstr "Toiminto ei ole vielä käytössä" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Yhdyskäytävä" @@ -596,7 +612,7 @@ msgstr "Yhdyskäytävä" msgid "Genre:" msgstr "Laji:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Saksalainen" @@ -605,16 +621,16 @@ msgstr "Saksalainen" msgid "Getting plugin information. Please wait..." msgstr "Haetaan tietoja lisäosista. Odota..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Mene sijaintiin" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Suoja-aika asetus" @@ -623,20 +639,20 @@ msgstr "Suoja-aika asetus" msgid "Harddisk" msgstr "Kiintolevy" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hierarkia-tila" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Kuinka monta minuuttia haluat tallentaa?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP osoite" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Islantilainen" @@ -649,11 +665,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "Tallennuksen onnistumiseksi, vaihdettiin tallennettavalle kanavalle!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Korotettu jännite" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Alusta" @@ -665,34 +681,34 @@ msgstr "Alusta" msgid "Initializing Harddisk..." msgstr "Alustetaan kiintolevyä..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Välitön tallennus..." -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Käänteinen" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italialainen" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -700,40 +716,36 @@ msgstr "" msgid "Language selection" msgstr "Kielivalinta" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "leveysaste" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Vasen" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Raja itään" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Raja länteen" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Rajat pois" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Rajat päälle" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Pituusaste" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Läpisyöttö kytkentään A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Manuaalinen transponderi" @@ -742,35 +754,35 @@ msgstr "Manuaalinen transponderi" msgid "Model: " msgstr "Malli:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulaatio" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Ma" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Ma-Pe" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Maanantai" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Siirrä Kuva Kuvassa-toimintoa" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Liikuta itään" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Liikuta länteen" @@ -782,103 +794,99 @@ msgstr "Elokuvavalikko" msgid "Multi EPG" msgstr "Moni EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Usean palvelun tuki" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Usea satelliitti" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Ei saatavilla" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Nimi" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Nimipalvelin" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Verkkomaski" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Verkkohaku" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Uusi" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Uusi versio:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Seuraava" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Ei" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Kiintolevyä ei löydy tai\n" "kiintolevy alustamaton." -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Ohjelmatietoa ei löydy, tallennetaan ilman ohjelmatietoja." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Ei löytynyt moottoria ymmärtävää frontendiä." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Yhtään viritintä ei ole määritetty käyttämään diseqc-moottoria!" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Ei mitään" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Pohjoinen" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norjalainen" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Ei kytketty" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -886,23 +894,21 @@ msgstr "" "Ei mitään haettavaa!\n" "Määritä virittimen asetukset ennen kanavahakua." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Pois" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Päällä" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Yksi" @@ -914,28 +920,44 @@ msgstr "Online-päivitys" msgid "Packet management" msgstr "Pakettienhallinta" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Toista tallennetut elokuvat..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Valitse laajennus..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Anna uuden kanavanipun nimi" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Anna nimi uudelle merkille" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Valitse tallennettava alipalvelu..." -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Valitse alipalvelu..." @@ -953,85 +975,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Odota... Listaa noudetaan..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polariteetti" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisaatio" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Portti A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Portti B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Portti C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Portti D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Moottori" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Moottorin hidas liikutus" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Moottorin liikutus" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Moottorin muisti" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Ennalta määritelty satelliitti" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Paina OK aktivoidaksesi asetukset." -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Paina OK skannataksesi" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Paina OK aloittaaksesi skannauksen" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Edellinen" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Toimittaja" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Toimittajat" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Poistetaanko menneet ajastukset?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1039,6 +1081,14 @@ msgstr "" msgid "Recording" msgstr "Tallennetaan" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Poista lisäosia" @@ -1047,88 +1097,88 @@ msgstr "Poista lisäosia" msgid "Remove plugins" msgstr "Poista lisäosia" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Toiston tyyppi" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "Korvaa nykyinen soittolista" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Resetoi" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Palauta" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Oikea" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "La" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satelliitti" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satelliitit" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Lauantai" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Skannaa NIM" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Etsintä itään" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Etsintä länteen" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Toinen kaapeli moottorisoidulta mikropäältä" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Valitse äänimuoto" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Valitse ääniraita" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Valitse tallennettava kanava" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Vaiheen toisto" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanavat" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Aseta rajat" @@ -1136,11 +1186,15 @@ msgstr "Aseta rajat" msgid "Settings" msgstr "Asetukset" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Näytä radiosoitin..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "Näytä tv..." @@ -1152,12 +1206,7 @@ msgstr "Samanlainen" msgid "Similar broadcasts:" msgstr "Samantyyliset lähetykset:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Yksinkertainen" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Yksi" @@ -1165,21 +1214,21 @@ msgstr "Yksi" msgid "Single EPG" msgstr "Yksi EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Yksi satelliitti" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Yksi lähetin" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Lukija" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Pistoke" @@ -1193,24 +1242,24 @@ msgstr "" "\n" "Valitse uusi kohde." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Etelä" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Espanjalainen" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Aloita" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Aloita tallennus?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Aloitusaika" @@ -1218,108 +1267,122 @@ msgstr "Aloitusaika" msgid "Step " msgstr "Askel" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Askel itään" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Askel länteen" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stereo" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Pysäytä" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Pysäytä aikasiirto?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Pysäytä elokuvan toistaminen?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Tallenna sijainti" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Tallennettu sijainti" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Alipalvelulista..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Su" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Sunnuntai" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Vaihda palveluita" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Ruotsalainen" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Vaihda seuraavaan alipalveluun" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Vaihda edelliseen alipalveluun" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symboolinopeus" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Maanpäällinen" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Terrestiaalioperaattori" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Kolme" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Kynnys" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "To" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Torstai" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Aika" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Ajastimen tyyppi" @@ -1327,67 +1390,67 @@ msgstr "Ajastimen tyyppi" msgid "Title:" msgstr "Otsikko:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Tänään" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Äänitila" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Äänipurske" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Äänipurske A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Lähetystapa" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transponderi" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transponderityyppi" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Ti" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Tiistai" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Viritä" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Viritin" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Turkkilainen" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Kaksi" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Skannauksen tyyppi" @@ -1409,11 +1472,11 @@ msgstr "" "Katso ohjeita levyn ohjekirjasta.\n" "VIRHE: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Uncommitted DiSEqC-käsky" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Universaali LNB" @@ -1425,46 +1488,46 @@ msgstr "Päivitys valmis. Tulos:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Päivitetään...odota...tämä voi kestää muutaman minuutin..." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Käytä DHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Käytä USALS tälle satelliitille" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Käyttäjän määrittelemä" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "näytä tekstitv..." -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Jännitetila" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Ke" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Keskiviikko" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Viikonpäivä" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Länsi" @@ -1472,11 +1535,7 @@ msgstr "Länsi" msgid "Year:" msgstr "Vuosi:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Kyllä" @@ -1484,7 +1543,7 @@ msgstr "Kyllä" msgid "You cannot delete this!" msgstr "Et voi poistaa tätä!" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Valitsit soittolistan" @@ -1496,23 +1555,23 @@ msgstr "" "Front-prosessori on päivitettävä.\n" "Paina OK aloittaaksesi päivityksen." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[kanavanippujen muokkaus]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[suosikkien muokkaus]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[siirtotila]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "peruuta kanavanippujen muokkaus" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "peruuta suosikkien muokkaus" @@ -1520,45 +1579,54 @@ msgstr "peruuta suosikkien muokkaus" msgid "about to start" msgstr "aloittamassa" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "lisää kanavanippu" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "lisää hakemisto soittolistalle" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "lisää tiedosto soittolistalle" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "lisää merkki" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "tallenna (syötä tallennuksen kesto)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "tallenna (jatkuva)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "tallenna (lopeta nykyisen ohjelman jälkeen)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "lisää kanava kanavanippuun" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "lisää kanava suosikkeihin" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1568,39 +1636,47 @@ msgstr "" "seuraavan varmuuskopion:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "takaisin" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "muokkaa tallennusta (kesto)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "Kiertopolarisaatio vasen" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "Kiertopolarisaatio oikea" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "tyhjennä soittolista" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "jatka" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "kopioi suosikkeihin" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "päivittäinen" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "poista" @@ -1608,16 +1684,16 @@ msgstr "poista" msgid "delete..." msgstr "poista..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "poistu siirtotilasta" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "älä tee mitään" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "älä tallenna" @@ -1625,30 +1701,34 @@ msgstr "älä tallenna" msgid "done!" msgstr "valmis!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "tyhjä/tuntematon" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "ota kanavanippujen muokkaustila käyttöön" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "ota suosikkien muokkaustila käyttöön" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "ota siirtotila käyttöön" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "lopeta kanavanippujen muokkaus" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "lopeta suosikkien muokkaus" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "vapaata levytilaa" @@ -1657,31 +1737,31 @@ msgstr "vapaata levytilaa" msgid "full /etc directory" msgstr "täysi /etc hakemisto" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "mene syvään valmiustilaan" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "kuuntele radiota..." -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "piilota soitin" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horisontaali" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "alusta moduuli" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "poistu elokuvatoistimesta..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "vasen" @@ -1690,7 +1770,11 @@ msgstr "vasen" msgid "list" msgstr "listaa" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manuaali" @@ -1699,24 +1783,20 @@ msgstr "manuaali" msgid "mins" msgstr "minuuttia" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "seuraava kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "seuraava kanava historiassa" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "ei" @@ -1724,7 +1804,7 @@ msgstr "ei" msgid "no HDD found" msgstr "kiintolevyä ei löydy" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "moduleita ei löydy" @@ -1732,19 +1812,23 @@ msgstr "moduleita ei löydy" msgid "none" msgstr "ei yhtään" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "pois" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "päällä" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "kerran" @@ -1752,15 +1836,15 @@ msgstr "kerran" msgid "only /etc/enigma2 directory" msgstr "vain /etc/enigma2 hakemisto" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "avaa palvelulista" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "avaa palvelulista(alaspäin)" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "avaa palvelulista(ylöspäin)" @@ -1768,23 +1852,23 @@ msgstr "avaa palvelulista(ylöspäin)" msgid "pass" msgstr "hyväksytty" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "tauko" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "paina OK kun olet valmis" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "edellinen kanava" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "edellinen kanava historiassa" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "tallenna" @@ -1792,24 +1876,28 @@ msgstr "tallenna" msgid "recording..." msgstr "tallennetaan..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "poista kaikki uusi kanava-liput" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "poista merkintä" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "poista uusi kanava-lippu" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "toistuva" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "oikea" @@ -1851,43 +1939,61 @@ msgstr "" msgid "scan state" msgstr "haun tila" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "näytä EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "näytä ohjelman tarkemmat tiedot" -#: ../lib/python/Screens/InfoBarGenerics.py:588 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "siirry taaksepäin" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "siirry eteenpäin" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "aloita ajansiirto" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "lopeta tallennus" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "Pysäytä ajansiirto" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "vaihda tiedostolistaan" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "vaihda soittolistaan" @@ -1899,53 +2005,61 @@ msgstr "teksti" msgid "this recording" msgstr "tämä tallennus" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "tuntematon kanava" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "käyttäjän määrittelemä" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "vertikaali" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "näytä laajennukset..." -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "näytä tallenteet..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "odottaa" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "viikottainen" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "kyllä" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "kyllä (pidä feedit)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "vaihto" @@ -2010,6 +2124,10 @@ msgstr "Kanavahaku" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "Päävalikko" + #: ../data/ msgid "TV System" msgstr "TV järjestelmä" @@ -2087,8 +2205,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Antenniasetukset" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2212,8 +2330,8 @@ msgid "Standby / Restart" msgstr "Valmiustila / Käynnistys" #: ../data/ -msgid "Main menu" -msgstr "Päävalikko" +msgid "Standby" +msgstr "Valmiustila" #: ../data/ msgid "EPG Selection" @@ -2236,8 +2354,8 @@ msgid "Brightness" msgstr "Kirkkaus" #: ../data/ -msgid "Standby" -msgstr "Valmiustila" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2295,6 +2413,10 @@ msgstr "Ladattavat lisäosat" msgid "Subservices" msgstr "Alipalvelut" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Aikavyöhyke" @@ -2567,6 +2689,10 @@ msgstr "Sovita" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "VCR scart" @@ -2635,6 +2761,10 @@ msgstr "Aika/Päivä " msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Antenniasetukset" + #: ../data/ msgid "What do you want to scan?" msgstr "Mitä haluat etsiä?" @@ -2674,3 +2804,33 @@ msgstr "Mediasoitin" #: ../data/ msgid "Do you want to do another manual service scan?" msgstr "Haluatko tehdä uuden käsinhaun?" + +#~ msgid "Cable provider" +#~ msgstr "Kaapeli-TV operaattori" + +#~ msgid "Classic" +#~ msgstr "Klassinen" + +#~ msgid "Default" +#~ msgstr "Oletus" + +#~ msgid "Equal to Socket A" +#~ msgstr "Kuten Kanta A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Läpisyöttö kytkentään A" + +#~ msgid "Nothing connected" +#~ msgstr "Ei kytketty" + +#~ msgid "Predefined satellite" +#~ msgstr "Ennalta määritelty satelliitti" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Toinen kaapeli moottorisoidulta mikropäältä" + +#~ msgid "Simple" +#~ msgstr "Yksinkertainen" + +#~ msgid "Swap services" +#~ msgstr "Vaihda palveluita" diff --git a/po/fr.po b/po/fr.po index 5cc5fb9a..28019d58 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-06-13 18:14+0200\n" "Last-Translator: DonHora \n" "Language-Team: french\n" @@ -35,9 +35,9 @@ msgid "%d min" msgstr "%d min" # Ex : 25/12/2006 -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d/%m/%Y" @@ -63,51 +63,63 @@ msgstr "répertoire /usr/share/enigma2" msgid "/var directory" msgstr "répertoire /var" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "Sortie 12 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -115,7 +127,7 @@ msgstr "" "Un enregistrement est en cours.\n" "Que voulez-vous faire ?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -131,38 +143,36 @@ msgstr "" "Un programme n'a pas pu s'enregistrer !\n" "Désactiver la TV et réessayer ?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Activer l'incrustation d'image" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Ajouter" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Programmer" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Avancé" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Après l'émission" @@ -170,8 +180,8 @@ msgstr "Après l'émission" msgid "Album:" msgstr "Album :" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Toutes" @@ -183,37 +193,37 @@ msgstr "Arabe" msgid "Artist:" msgstr "Artiste :" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Recherche automatique" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -229,11 +239,11 @@ msgstr "Emplacement de la sauvegarde" msgid "Backup Mode" msgstr "Mode de sauvegarde" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Bande" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Bande passante" @@ -241,7 +251,7 @@ msgstr "Bande passante" msgid "Bus: " msgstr "Bus : " -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "Bande C" @@ -249,18 +259,14 @@ msgstr "Bande C" msgid "CF Drive" msgstr "Lecteur CF" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Câble" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Câblopérateur" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Annuler" @@ -268,11 +274,32 @@ msgstr "Annuler" msgid "Capacity: " msgstr "Capacité : " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Chaîne" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Chaîne : " @@ -280,57 +307,54 @@ msgstr "Chaîne : " msgid "Choose source" msgstr "Choisissez la source" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Classique" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Nettoyage" # Effacer ou vider ? -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Effacer avant de rechercher" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Effacer le journal" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Débit symbole haut" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Débit symbole bas" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "" # TODO : À vérifier -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Commande DiSEqC validée" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Terminé" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Mode de configuration" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Programmation conflictuelle" @@ -338,31 +362,27 @@ msgstr "Programmation conflictuelle" msgid "Current version:" msgstr "Version actuelle : " -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Danois" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Date" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Défaut" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Effacer" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Effacer l'entrée" @@ -370,7 +390,7 @@ msgstr "Effacer l'entrée" msgid "Delete failed!" msgstr "L'effacement a échoué !" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Description" @@ -382,43 +402,39 @@ msgstr "DD détecté : " msgid "Detected NIMs:" msgstr "NIM détectés : " -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "Mode DiSEqC" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "Mode DiSEqC" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Désactiver" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Désactiver l'incrustation d'image" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -454,7 +470,7 @@ msgstr "" "Voulez-vous sauvegarder maintenant ?\n" "Après avoir appuyé sur OK, veuillez patienter !" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -479,11 +495,11 @@ msgstr "Nouveaux plugins téléchargables" msgid "Downloading plugin information. Please wait..." msgstr "Téléchargement des informations sur les plugins. Patientez SVP..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Hollandais" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "E" @@ -492,48 +508,48 @@ msgstr "E" msgid "ERROR - failed to scan (%s)!" msgstr "ERREUR - échec lors de l'analyse (%s) !" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Est" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Activer" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Fin" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Fin" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Anglais" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Pareil que l'emplacement A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -543,45 +559,45 @@ msgstr "Avancement de l'exécution :" msgid "Execution finished!!" msgstr "Exécution terminée !" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "DiSEqC rapide" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoris" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Finlandais" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Français" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Fréquence" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Ven" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Vendredi" @@ -594,7 +610,7 @@ msgstr "Version du frontprocessor : %d" msgid "Function not yet implemented" msgstr "Fonction non implémentée pour l'instant" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Passerelle" @@ -602,7 +618,7 @@ msgstr "Passerelle" msgid "Genre:" msgstr "Genre :" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Allemand" @@ -611,17 +627,17 @@ msgstr "Allemand" msgid "Getting plugin information. Please wait..." msgstr "Récupération des informations du plugin. Patientez SVP..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "Aller à 0" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Aller à la position" # TODO : À vérifier -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Intervalle de garde" @@ -631,20 +647,20 @@ msgid "Harddisk" msgstr "Disque dur" # TODO : À vérifier -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hiérarchie" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Combien de minutes voulez-vous enregistrer ?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "Adresse IP" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Islandais" @@ -659,11 +675,11 @@ msgstr "" "Afin d'enregistrer une émission programmée, la TV zappera sur la chaîne " "enregistrée !\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Augmenter la tension" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Initialiser" @@ -675,34 +691,34 @@ msgstr "Initialiser" msgid "Initializing Harddisk..." msgstr "Initialisation du disque sur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversion" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italien" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" @@ -710,41 +726,37 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Sélection de la langue" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Latitude" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Gauche" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Limite est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Limite ouest" # TODO: À vérifier -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Désactiver les limites" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Limites activées" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Longitude" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Boucle vers l'emplacement A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Transpondeur manuel" @@ -753,35 +765,35 @@ msgstr "Transpondeur manuel" msgid "Model: " msgstr "Modèle : " -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulation" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Lun" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Lun-Ven" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Lundi" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Déplacer l'incrustation d'image" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Déplacer vers l'est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Déplacer vers l'ouest" @@ -793,103 +805,99 @@ msgstr "Menu des films" msgid "Multi EPG" msgstr "Multi guide" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Multisat" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "N/A" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Nom" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Serveur de noms" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Masque de sous réseau" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Analyse du réseau" # TODO : Vérifier si on parle d'une chaîne (féminin / masculin) -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Nouvelle" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Nouvelle version : " -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Suivant" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Non" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "Aucun disque dur trouvé ou disque dur non initialisé !" -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Aucune information trouvée sur l'émission, enregistre indéfiniment." # TODO : À traduire (frontend) -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Aucun tuner n'est configuré pour utiliser un positionneur DiSEqC !" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Aucun" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norvégien" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Rien n'est connecté" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -897,23 +905,21 @@ msgstr "" "Rien à rechercher !\n" "Veuillez paramétrer votre tuner avant de démarrer une recherche de chaînes." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Arrêt" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Marche" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Un" @@ -925,30 +931,46 @@ msgstr "Mise à jour en ligne" msgid "Packet management" msgstr "Gestion des paquets" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Lire les films enregistrés..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Veuillez choisir une extension..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Veuillez entrer un nom pour le bouquet" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + # Sous-service ? -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Veuillez choisir un sous-service à enregistrer..." # Sous-service ? -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Veuillez choisir un sous-service..." @@ -963,85 +985,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Veuillez patienter... Chargement de la liste..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polarité" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisation" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Port A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Port B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Port C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Positionneur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Mouvement fin du positionneur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Mouvement du positionneur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Stockage du positionneur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Satellite prédéfini" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Appuyez sur OK pour activer les paramètres." -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Appuyez sur OK pour analyser" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Appuyez sur OK pour commencer l'analyse" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Précédent" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Fournisseur" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Fournisseurs" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Enlever les enregistrements effectués ?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1049,6 +1091,14 @@ msgstr "" msgid "Recording" msgstr "Enregistrement" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Enlever des plugins" @@ -1057,89 +1107,89 @@ msgstr "Enlever des plugins" msgid "Remove plugins" msgstr "Enlever des plugins" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Type de répétition" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Réinitialiser" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Restaurer" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Droite" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Sam" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellite" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satellites" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Samedi" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Analyse NIM" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Rechercher à l'est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Rechercher à l'ouest" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Second câble depuis un LNB motorisé" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Sélectionnez le mode audio" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Selectionnez la piste audio" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Sélectionnez la chaîne à enregistrer" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Chaînes" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Fixer les limites" @@ -1147,11 +1197,15 @@ msgstr "Fixer les limites" msgid "Settings" msgstr "Paramètres" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Afficher la radio..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1163,12 +1217,7 @@ msgstr "Similaire" msgid "Similar broadcasts:" msgstr "Émissions semblables : " -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Simple" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Simple" @@ -1176,23 +1225,23 @@ msgstr "Simple" msgid "Single EPG" msgstr "Guide simple" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Satellite seul" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Transpondeur simple" # TODO: Voir si il faut franciser -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" # TODO: Voir si il faut franciser -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "" @@ -1206,24 +1255,24 @@ msgstr "" "\n" "Veuillez en choisir un autre." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Sud" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Espagnol" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Début" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Démarrer l'enregistrement ?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Début" @@ -1232,112 +1281,125 @@ msgid "Step " msgstr "Étape" # Step == cran || étape ? -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "" # Step == cran || étape ? -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stéréo" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Arrêter la pause du direct ?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Arrêter la lecture du film ?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Enregistrer la position" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Position enregistrée" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Liste des sous-services..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Dim" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Dimanche" -# TODO: À vérifier -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Échanger les chaînes" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Suédois" # TODO : Vérifier subservice -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Basculer vers le sous-service suivant" # TODO : Vérifier subservice -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Basculer vers le sous-service précédent" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Débit symbole" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestre" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Opérateur terrestre" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Trois" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Seuil" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Jeu" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Jeudi" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Heure" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Type" @@ -1345,69 +1407,69 @@ msgstr "Type" msgid "Title:" msgstr "Titre :" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Aujourd'hui" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Mode de transmission" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transpondeur" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Type de transpondeur" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Mar" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Mardi" # À vérifier -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Accorder" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tuner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Deux" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Type d'analyse" @@ -1429,11 +1491,11 @@ msgstr "" "Veuillez vous référer au manuel.\n" "Erreur : " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Commande DiSEqC non validée" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "LNB universel" @@ -1446,48 +1508,48 @@ msgid "Updating... Please wait... This can take some minutes..." msgstr "" "Mise à jour... Veuillez patienter... Ceci peut prendre quelques minutes..." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Utiliser DHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Utiliser USALS pour ce satellite" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Défini par l'utilisateur" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" # TODO : À traduire -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "O" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Mer" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Mercredi" # TODO: À vérifier -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Jours ouvrables" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Ouest" @@ -1495,11 +1557,7 @@ msgstr "Ouest" msgid "Year:" msgstr "Année :" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Oui" @@ -1507,7 +1565,7 @@ msgstr "Oui" msgid "You cannot delete this!" msgstr "Vous ne pouvez effacer ceci !" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1519,23 +1577,23 @@ msgstr "" "Le logiciel de votre frontprocessor doit être mis à jour.\n" "Veuillez appuyer sur OK pour commencer la mise à jour." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[édition des bouquets]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[édition des favoris]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[mode déplacement]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "abandonner l'édition des bouquets" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "abandonner l'édition des favoris" @@ -1544,47 +1602,56 @@ msgstr "abandonner l'édition des favoris" msgid "about to start" msgstr "sur le point de commencer" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "ajouter le répertoire à la liste de lecture" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "ajouter le fichier à la liste de lecture" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "ajout d'enregistrement (entrer la durée d'enregistrement)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "ajout d'enregistrement (indéfiniment)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "ajout d'enregistrement (arrêter après l'émission en cours)" # TODO: Vérifier « cette » -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "ajouter cette chaîne au bouquet" # TODO: Vérifier « cette » -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "ajouter cette chaîne aux favoris" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1594,41 +1661,49 @@ msgstr "" "la sauvegarde suivante :\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "retour" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "modifier un enregistrement (durée)" # TODO: À vérifier -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "circulaire à gauche" # TODO: À vérifier -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circulaire à droite" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "effacer la liste de lecture" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "copier dans les favoris" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "quotidien" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "effacer" @@ -1636,16 +1711,16 @@ msgstr "effacer" msgid "delete..." msgstr "effacer..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "désactiver le mode déplacement" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "ne rien faire" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "ne pas enregistrer" @@ -1653,30 +1728,34 @@ msgstr "ne pas enregistrer" msgid "done!" msgstr "terminé !" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "vide/inconnu" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "activer l'édition des bouquets" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "activer l'édition des favoris" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "activer le mode déplacement" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "terminer l'édition des bouquets" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "terminer l'édition des favoris" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "espace disque libre" @@ -1685,31 +1764,31 @@ msgstr "espace disque libre" msgid "full /etc directory" msgstr "répertoire /etc entier" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "mettre en veille profonde" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "cacher le lecteur" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horizontale" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "initialiser le module" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "quitter le lecteur..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "gauche" @@ -1718,7 +1797,11 @@ msgstr "gauche" msgid "list" msgstr "liste" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manuel" @@ -1727,24 +1810,20 @@ msgstr "manuel" msgid "mins" msgstr "min" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "chaîne suivante" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "chaîne suivante dans l'historique" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "non" @@ -1752,7 +1831,7 @@ msgstr "non" msgid "no HDD found" msgstr "aucun disque dur trouvé" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "aucun module trouvé" @@ -1760,19 +1839,23 @@ msgstr "aucun module trouvé" msgid "none" msgstr "aucun" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "arrêt" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "marche" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "une fois" @@ -1780,15 +1863,15 @@ msgstr "une fois" msgid "only /etc/enigma2 directory" msgstr "seulement le répertoire /etc/enigma2" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1796,24 +1879,24 @@ msgstr "" msgid "pass" msgstr "passe" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "veuillez appuyer sur OK quand vous êtes prêt(e)" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "chaîne précédente" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "chaîne précédente dans l'historique" # TODO: À vérifier -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "enregistre" @@ -1822,25 +1905,29 @@ msgid "recording..." msgstr "enregistrement..." # TODO: À vérifier -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "enlever tous les indicateurs de nouvelle chaîne" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + # TODO: À vérifier -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "enlever l'indicateur de nouvelle chaîne" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "répété" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "droite" @@ -1882,43 +1969,61 @@ msgstr "" msgid "scan state" msgstr "état de l'analyse" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "afficher le guide" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "afficher les détails de l'émission" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "stéréo" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "arrêter l'enregistrement" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "basculer vers la liste des fichiers" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "basculer vers la liste de lecture" @@ -1930,53 +2035,61 @@ msgstr "texte" msgid "this recording" msgstr "cet enregistrement" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "chaîne inconnue" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "défini par l'utilisateur" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "verticale" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "en attente" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "hebdomadaire" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "oui" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "oui (garder les feeds)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "zap" @@ -2043,6 +2156,10 @@ msgstr "Recherche des chaînes" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Menu principal" + #: ../data/ msgid "TV System" msgstr "Système TV" @@ -2122,8 +2239,8 @@ msgid "#bab329" msgstr "#bab329" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Paramétrage satellite / parabole" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2252,8 +2369,8 @@ msgid "Standby / Restart" msgstr "Veille / Redémarrage" #: ../data/ -msgid "Main menu" -msgstr "Menu principal" +msgid "Standby" +msgstr "Veille" # TODO: Voir si il faut franciser #: ../data/ @@ -2277,8 +2394,8 @@ msgid "Brightness" msgstr "Luminosité" #: ../data/ -msgid "Standby" -msgstr "Veille" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2337,6 +2454,10 @@ msgstr "Plugins téléchargeables" msgid "Subservices" msgstr "Sous services" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Fuseau horaire" @@ -2618,6 +2739,10 @@ msgstr "" msgid "#389416" msgstr "#389416" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Prise péritel du magnétoscope" @@ -2689,6 +2814,10 @@ msgstr "Entrée Date/Heure" msgid "AGC:" msgstr "AGC :" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Paramétrage satellite / parabole" + #: ../data/ msgid "What do you want to scan?" msgstr "Que voulez-vous rechercher ?" @@ -2730,6 +2859,37 @@ msgstr "Lecteur multimédia" msgid "Do you want to do another manual service scan?" msgstr "Voulez-vous faire une autre recherche manuelle de chaînes ?" +#~ msgid "Cable provider" +#~ msgstr "Câblopérateur" + +#~ msgid "Classic" +#~ msgstr "Classique" + +#~ msgid "Default" +#~ msgstr "Défaut" + +#~ msgid "Equal to Socket A" +#~ msgstr "Pareil que l'emplacement A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Boucle vers l'emplacement A" + +#~ msgid "Nothing connected" +#~ msgstr "Rien n'est connecté" + +#~ msgid "Predefined satellite" +#~ msgstr "Satellite prédéfini" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Second câble depuis un LNB motorisé" + +#~ msgid "Simple" +#~ msgstr "Simple" + +# TODO: À vérifier +#~ msgid "Swap services" +#~ msgstr "Échanger les chaînes" + #~ msgid "add bouquet..." #~ msgstr "ajouter un bouquet..." diff --git a/po/is.po b/po/is.po index 278cc070..3b3e2f06 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-08-03 23:52-0000\n" "Last-Translator: Baldur Þór Sveinsson \n" "Language-Team: Polar Team \n" @@ -36,9 +36,9 @@ msgstr "\"?" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -64,51 +64,63 @@ msgstr "/usr/share/enigma2 mappa" msgid "/var directory" msgstr "/var mappa" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Út" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "<óþekktur>" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -116,7 +128,7 @@ msgstr "" "Upptaka er nú í gangi.\n" "Hvað viltu núna gera?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -132,38 +144,36 @@ msgstr "" "Tímastillt upptaka mistkst!\n" "Hætta og reyna aftur?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Virkja Mynd í Mynd" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Viðbót" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "Bæta skrám við spilunarlista" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Bæta við tímastillingu" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Sérfæði" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Eftir atriði" @@ -171,8 +181,8 @@ msgstr "Eftir atriði" msgid "Album:" msgstr "Albúm:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Allt" @@ -184,37 +194,37 @@ msgstr "Arabíska" msgid "Artist:" msgstr "Listmaður:" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Hljóð stillingar..." -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Sjálfvirkt" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Sjálfvirk leit" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -230,11 +240,11 @@ msgstr "Staður fyrir afrit" msgid "Backup Mode" msgstr "Afritunar hamur" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Tíðnisvið" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Bandbreidd" @@ -242,7 +252,7 @@ msgstr "Bandbreidd" msgid "Bus: " msgstr "Rás:" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Band" @@ -250,18 +260,14 @@ msgstr "C-Band" msgid "CF Drive" msgstr "CF Drif" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kapalkerfi" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kapal sendandi" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Hætta við" @@ -269,11 +275,32 @@ msgstr "Hætta við" msgid "Capacity: " msgstr "Stærð:" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Rás" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Rás:" @@ -281,54 +308,51 @@ msgstr "Rás:" msgid "Choose source" msgstr "Veldu miðil" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Sígilt" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Hreinsa" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Eyða fyrir leit" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Tæma lista" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Gagna hraði, hár" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Gagna hraði, lár" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Röðun skipana" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Fyrsta DiSEqC rofa stýring" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Búið" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Stillingar" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Tímastilling skarast" @@ -336,31 +360,27 @@ msgstr "Tímastilling skarast" msgid "Current version:" msgstr "Núverandi útgáfa:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Danska" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Dags" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Venjulegt" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Eyða" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Eyða innslætti" @@ -368,7 +388,7 @@ msgstr "Eyða innslætti" msgid "Delete failed!" msgstr "Tókst ekki að eyða!" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Lýsing" @@ -380,42 +400,38 @@ msgstr "Fann harðan disk:" msgid "Detected NIMs:" msgstr "Fann NIM:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC Gerð" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC gerð" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC endurtekning" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Gera óvirkt" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Gera Mynd í Mynd óvirka" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -453,7 +469,7 @@ msgstr "" "Viltu taka afrit núna?\n" "Eftir að hafa ýtt á OK þá bíðið!" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -478,11 +494,11 @@ msgstr "Niðurhalanleg ný innskot" msgid "Downloading plugin information. Please wait..." msgstr "Hala niður innskots upplýsingum. Vinsamlega bíðið..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Hollenska" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "E" @@ -491,48 +507,48 @@ msgstr "E" msgid "ERROR - failed to scan (%s)!" msgstr "VILLA - gat ekki opnað leit (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Austur" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Virkja" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "Kveikja á 5V fyrir loftnet með magnara" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Hætta" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "EndaTími" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Enska" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Fara í aðal valmynd..." -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Eins og Tengi A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -542,44 +558,44 @@ msgstr "Framganga keyrslu:" msgid "Execution finished!!" msgstr "Keyrslu lokið!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Hratt DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Uppáhald listar" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Finnska" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Franska" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Tíðni" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Fös" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Föstudagur" @@ -592,7 +608,7 @@ msgstr "Útgáfa framheila: %d" msgid "Function not yet implemented" msgstr "Aðferð ekki enn virkt" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Beinir" @@ -600,7 +616,7 @@ msgstr "Beinir" msgid "Genre:" msgstr "Gerð:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Þýska" @@ -609,16 +625,16 @@ msgstr "Þýska" msgid "Getting plugin information. Please wait..." msgstr "Næ í upplýsingar um innskot. Vinsamlega bíðið..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "Fara 0" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Fara á staðsetningu" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Guard millibils hamur" @@ -627,20 +643,20 @@ msgstr "Guard millibils hamur" msgid "Harddisk" msgstr "Harður diskur" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Flokkunar hamur" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Í hvað margar mínútur viltu taka upp?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP Netfang" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Íslenska" @@ -654,11 +670,11 @@ msgid "" msgstr "" "Til að taka upp á tíma stillingu þá var sjónvarpið stillt á upptökurás!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Aukin spenna" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Stilli" @@ -670,34 +686,34 @@ msgstr "Frumstiling" msgid "Initializing Harddisk..." msgstr "Frumstilli harða disk" -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Skyndi upptaka..." -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Umbreyting" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Ítalska" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" @@ -705,40 +721,36 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Val tungumáls" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Breiddargráða" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Vinstri" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Mörk í austur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Mörk í vestur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Mörk ekki stillt" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Mörk á" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Lengdargráða" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Tengt á milli í tengi A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Handvirk leit á sendi" @@ -747,35 +759,35 @@ msgstr "Handvirk leit á sendi" msgid "Model: " msgstr "Gerð:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Mótun" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Mán" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Mán-Fös" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Mánudagur" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Færa Mynd í Mynd" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Færa austur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Færa vestur" @@ -787,101 +799,97 @@ msgstr "Bíómynda valmynd" msgid "Multi EPG" msgstr "Marg rása EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Margir gervihnettir" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Ekki til" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Nafn" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Nafnaþjónn" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Netmaski" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Leita netkerfið allt" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Nýtt" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Ný útgáfa:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Næsta" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nei" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 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:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Engar upplýsingar um atriði fundust, tek upp endalaust." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Það fannst ekki móttakari sem styður staðsetjara." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Enginn móttakari er stilltur til að nota með staðsetjara!" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Enginn" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Norður" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norska" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Ekkert tengt" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -889,23 +897,21 @@ msgstr "" "Ekkert til að leita!\n" "Stilltu inn móttakarann áður en að þú byrjar rása leit." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Af" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Á" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Einn" @@ -917,28 +923,44 @@ msgstr "Uppfærsla frá neti" msgid "Packet management" msgstr "Pakka meðhöndlun" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Spila uppteknar myndir..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Vinsamlega veldu viðbót.." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Settu inn nafn á nýjum rása vendi" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Velja undirrás til að taka upp..." -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vinsamlega veldu undirrás..." @@ -956,85 +978,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Vinsamlega bíðið.. les inn lista...." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Pólun" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Pólun" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Tengi A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Tengi B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Tengi C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Tengi D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Mótorstýring" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Fín færsla mótors" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Færsla mótors" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Vistun í staðsetjjara" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Fyrirfram stilltur gervihnöttur" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Ýtið á OK til að virkja stillingar." -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Ýtið á OK til að leita" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Ýtið á OK til að byrja að leita" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Fyrri" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Sendandi" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Sendendur" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Viltu eyða liðnum tímastillingum?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1042,6 +1084,14 @@ msgstr "" msgid "Recording" msgstr "Upptaka" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Taka út Innskot" @@ -1050,88 +1100,88 @@ msgstr "Taka út Innskot" msgid "Remove plugins" msgstr "Taka út innskot" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Gerð endurtekningar" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "Skipta út núverandi spilunarlista" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Endursetja" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Setja inn" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Hægri" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Lau" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Gervihnöttur" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Gervihnettir" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Laugardagur" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Leita NIM" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Leita austur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Leita vestur" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Seinni kapall frá mótorstýrðum nema" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Veldu hljóð stillingu" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Veldu hljóð rás" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Veldu rás til að taka upp frá" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Endurtaka runu" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Rásir" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Setja mörk" @@ -1139,11 +1189,15 @@ msgstr "Setja mörk" msgid "Settings" msgstr "Stillingar" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Sýna útvarpsspilara..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "Sýna sjónvarpsspilara" @@ -1155,12 +1209,7 @@ msgstr "Svipað" msgid "Similar broadcasts:" msgstr "Svipuð útsending:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Einfalt" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Einn" @@ -1168,21 +1217,21 @@ msgstr "Einn" msgid "Single EPG" msgstr "Eitt EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Einn gervihnöttur" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Einn sendir" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Hólf" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Tengi" @@ -1196,24 +1245,24 @@ msgstr "" "\n" "Veldu aðra staðsetningu" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Suður" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spænska" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Byrja" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Byrja upptöku?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Byrjunartími" @@ -1221,108 +1270,122 @@ msgstr "Byrjunartími" msgid "Step " msgstr "Þrep" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Skref austur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Skref vestur" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Víðóma" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Stopp" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Stoppa tímafærslu?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Stoppa spilun?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Vista staðsetningu" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Vistuð staða" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Listi undirrása..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Sun" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Sunnudagur" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Skipta á milli rása" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Sænskt" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Skipta á næstu undirrás" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Skipta á fyrri undirrás" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Gagnahraði" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Stafrænt í lofti" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Sendandi á landi" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Þrír" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Mörk" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Fim" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Fimmtudagur" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Tími" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Gerð Tímastillngar" @@ -1330,67 +1393,67 @@ msgstr "Gerð Tímastillngar" msgid "Title:" msgstr "Titill:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Í dag" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Tón stilling" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Tónstýring" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Tón stýring A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Sendi stilling" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Sendir" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Gerð sendis" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Þri" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Þriðjudagur" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Stilla" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Móttakari" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Tyrkneska" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Tveir" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Gerð leitunar" @@ -1412,11 +1475,11 @@ msgstr "" "Athugaðu upplýsingar um diskinn.\n" "Villa:" -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Uncommitted DiSEqC stýring" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Venjulegt LNB" @@ -1428,46 +1491,46 @@ msgstr "Uppfærslu er lokið. Hér er útkoman:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Uppfæri... Vinsamlega bíðið... Þetta getur tekið nokkurn tíma.." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Nota DHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Nota usals fyrir þennan hnött" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Stillt af notanda" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "Skoða textavarp..." -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spennu stýring" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "W" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Mið" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Miðvikudagur" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Vikudagur" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Vestur" @@ -1475,11 +1538,7 @@ msgstr "Vestur" msgid "Year:" msgstr "Ár:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Já" @@ -1487,7 +1546,7 @@ msgstr "Já" msgid "You cannot delete this!" msgstr "Þú getur ekki eytt þessu!" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Þú valdir spilunarlista" @@ -1499,23 +1558,23 @@ msgstr "" "Það þarf að uppfæra heila í framtölvu.\n" "Ýtið á OK til að byrja uppfærslu." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[breyta fléttu]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[breyta uppáhalds lista]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[færslu staða]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "hætta við að breyta fléttu" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "hætta við að breyta uppáhaldsl ista" @@ -1523,45 +1582,54 @@ msgstr "hætta við að breyta uppáhaldsl ista" msgid "about to start" msgstr "er að byrja" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "bæta möppu við spilunarlista" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "bæta skrá við spilunarlista" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "bæta við upptöku (stilla tíma á upptöku)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "bæta við upptöku (endalaus)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "bæta við upptöku (stoppa eftir núverandi atriði)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "bæta rás við fléttu" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "bæta rás við uppáhalds lista" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1571,39 +1639,47 @@ msgstr "" "eftirfarandi afrit:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "til baka" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "breyta upptöku (tíma)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "hringpólun vinstri" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "hringpólun hægri" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "hreinsa spilunarlista" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "halda áfram" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "bæta við uppáhalds lista" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "daglega" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "eyða" @@ -1611,16 +1687,16 @@ msgstr "eyða" msgid "delete..." msgstr "eyða...." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "hætta í færslu stöðu" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "ekki gera neitt" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "ekki taka upp" @@ -1628,30 +1704,34 @@ msgstr "ekki taka upp" msgid "done!" msgstr "búinn!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "tómur/óþekkt" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "byrja féttu breytingu" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "byrja breytingu uppáhalds lista" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "virkja færlsu stöðu" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "hætta að breyta fléttu" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "hætta að breyta uppáhalds lista" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "laust diskpláss" @@ -1660,31 +1740,31 @@ msgstr "laust diskpláss" msgid "full /etc directory" msgstr "alla /etc möppuna" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "fara í djúpsvefn" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "hlusta á útvarp...." -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "fela spilara" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "lárétt" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "stilli einingu" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "hætta í spilara" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "vinstri" @@ -1693,7 +1773,11 @@ msgstr "vinstri" msgid "list" msgstr "listi" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "handvirkt" @@ -1702,24 +1786,20 @@ msgstr "handvirkt" msgid "mins" msgstr "mín" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "næsta rás" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "næsta rás í sögu" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "nei" @@ -1727,7 +1807,7 @@ msgstr "nei" msgid "no HDD found" msgstr "fann ekki harða disk" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "fann ekki einingu" @@ -1735,19 +1815,23 @@ msgstr "fann ekki einingu" msgid "none" msgstr "engin" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "af" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "á" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "einu sinni" @@ -1755,15 +1839,15 @@ msgstr "einu sinni" msgid "only /etc/enigma2 directory" msgstr "bara /etc/enigma2 mappa" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "opna rása lista" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "opna rásalista (niður)" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "opna rásalista (upp)" @@ -1771,23 +1855,23 @@ msgstr "opna rásalista (upp)" msgid "pass" msgstr "í lagi" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "pása" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "vinsamlega ýtið á OK þegar tilbúið" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "fyrri rás" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "fyrri rás í sögu" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "taka upp" @@ -1795,24 +1879,28 @@ msgstr "taka upp" msgid "recording..." msgstr "tek upp...." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "eyða öllum merkingum um nýfundna rás" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "eyða merkingu um nýfundna rás" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "endurtekinn" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "hægri" @@ -1854,43 +1942,61 @@ msgstr "" msgid "scan state" msgstr "leitar staða" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "sýna EPG" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "sýna atriði nánar" -#: ../lib/python/Screens/InfoBarGenerics.py:588 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "fara til baka" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "fara áfram" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "byrja lifandi pásu" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "víðóma" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "stoppa upptöku" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "stoppa lifandi pásu" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "skipta í skráarlista" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "skipta í spilunar lista" @@ -1902,53 +2008,61 @@ msgstr "texti" msgid "this recording" msgstr "þessi upptaka" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "óþekkt rás" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "stillt af notanda" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "lóðrétt" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "skoða innskot" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "skoða upptökur..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "bíð" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "vikulega" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "já" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "já (halda fæðirásum)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "stökk" @@ -2014,6 +2128,10 @@ msgstr "Leita að rásum" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Aðalvalmynd" + #: ../data/ msgid "TV System" msgstr "Sjónvarps kerfi" @@ -2089,8 +2207,8 @@ msgid "#bab329" msgstr "#bab329" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Gervihn./Disk uppsetning" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2214,8 +2332,8 @@ msgid "Standby / Restart" msgstr "Biðstaða / Endurræsing" #: ../data/ -msgid "Main menu" -msgstr "Aðalvalmynd" +msgid "Standby" +msgstr "Biðstaða" #: ../data/ msgid "EPG Selection" @@ -2238,8 +2356,8 @@ msgid "Brightness" msgstr "Birta" #: ../data/ -msgid "Standby" -msgstr "Biðstaða" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2297,6 +2415,10 @@ msgstr "Niðurhalanleg innskot" msgid "Subservices" msgstr "Undirþjónusta" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Tímabelti" @@ -2567,6 +2689,10 @@ msgstr "" msgid "#389416" msgstr "#389416" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Vídeó scart" @@ -2635,6 +2761,10 @@ msgstr "Tíma/Dags Innsláttur" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Gervihn./Disk uppsetning" + #: ../data/ msgid "What do you want to scan?" msgstr "Að hverju viltu leita?" @@ -2675,6 +2805,36 @@ msgstr "Spilari" msgid "Do you want to do another manual service scan?" msgstr "Viltu leita aftur handvirkt?" +#~ msgid "Cable provider" +#~ msgstr "Kapal sendandi" + +#~ msgid "Classic" +#~ msgstr "Sígilt" + +#~ msgid "Default" +#~ msgstr "Venjulegt" + +#~ msgid "Equal to Socket A" +#~ msgstr "Eins og Tengi A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Tengt á milli í tengi A" + +#~ msgid "Nothing connected" +#~ msgstr "Ekkert tengt" + +#~ msgid "Predefined satellite" +#~ msgstr "Fyrirfram stilltur gervihnöttur" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Seinni kapall frá mótorstýrðum nema" + +#~ msgid "Simple" +#~ msgstr "Einfalt" + +#~ msgid "Swap services" +#~ msgstr "Skipta á milli rása" + #~ msgid "add bouquet..." #~ msgstr "bæta við rásavendi..." diff --git a/po/it.po b/po/it.po index 2828efff..5c8cd951 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-04-01 02:52+0100\n" "Last-Translator: Musicbob \n" "Language-Team: none\n" @@ -37,9 +37,9 @@ msgstr "\"?" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -65,51 +65,63 @@ msgstr "" msgid "/var directory" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Uscita" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -117,7 +129,7 @@ msgstr "" "Una registrazione è già attiva.\n" "Cosa vuoi fare?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -131,38 +143,36 @@ msgstr "" "Il Timer non è riuscito a far partire la registrazione.\n" "Disabilitare la TV e riprovare?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Aggiungi" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Agg.Timer" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Avanzato" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "" @@ -170,8 +180,8 @@ msgstr "" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Tutti" @@ -183,37 +193,37 @@ msgstr "Arabo" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Ricerca Automatica" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -229,11 +239,11 @@ msgstr "Backup dir." msgid "Backup Mode" msgstr "Modo Backup" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Banda" @@ -241,7 +251,7 @@ msgstr "Banda" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "" @@ -249,18 +259,14 @@ msgstr "" msgid "CF Drive" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Provider via cavo" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Cancella" @@ -268,11 +274,32 @@ msgstr "Cancella" msgid "Capacity: " msgstr "Capacità: " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Canale" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Canale:" @@ -280,54 +307,51 @@ msgstr "Canale:" msgid "Choose source" msgstr "Scegli sorgente" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Classico" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Pulisci" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Pulisci log" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Ordine comando" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Comando DiSEqC effettuato" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Completo" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Configurazione" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Timer in conflitto" @@ -335,31 +359,27 @@ msgstr "Timer in conflitto" msgid "Current version:" msgstr "Versione corrente:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Cancella" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Cancella dato" @@ -367,7 +387,7 @@ msgstr "Cancella dato" msgid "Delete failed!" msgstr "Cancellazione fallita." -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Descrizione" @@ -379,42 +399,38 @@ msgstr "Hard Disk presente:" msgid "Detected NIMs:" msgstr "Tuner presenti:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "Modo DiSEqC" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "Modo DiSEqC" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "Ripetizioni DiSEqC" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Disabilitato" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -450,7 +466,7 @@ msgstr "" "Vuoi effettuare il backup ora?\n" "Dopo aver premuto OK, attendi" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -475,11 +491,11 @@ msgstr "Nuovi Plugins scaricabili" msgid "Downloading plugin information. Please wait..." msgstr "Sto cercando informazioni sui plugins. Attendere prego..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Olandese" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "O" @@ -488,48 +504,48 @@ msgstr "O" msgid "ERROR - failed to scan (%s)!" msgstr "ERRORE - Ricerca fallita (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Est" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Attiva" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Fine" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Orario Fine" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Inglese" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Come il Tuner A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -539,44 +555,44 @@ msgstr "Esecuzione in corso:" msgid "Execution finished!!" msgstr "Esecuzione finita!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Preferiti" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequenza" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Ven" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Venerdi" @@ -589,7 +605,7 @@ msgstr "Versione Frontprocessor: %d" msgid "Function not yet implemented" msgstr "Funzione non ancora implementata" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "" @@ -597,7 +613,7 @@ msgstr "" msgid "Genre:" msgstr "" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Tedesco" @@ -606,16 +622,16 @@ msgstr "Tedesco" msgid "Getting plugin information. Please wait..." msgstr "Cerco informazioni sul plugin. Attendere prego..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Posizione GoTo" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "" @@ -624,20 +640,20 @@ msgstr "" msgid "Harddisk" msgstr "Hard Disk" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Modo gerarchico" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Per quanti minuti vuoi registrare?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "Indirizzo IP" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Islandese" @@ -650,11 +666,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Voltaggio aumentato" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Inizializza" @@ -666,34 +682,34 @@ msgstr "Formatta" msgid "Initializing Harddisk..." msgstr "Formatto l'Hard Disk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversione" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italiano" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -701,40 +717,36 @@ msgstr "" msgid "Language selection" msgstr "Selezione della lingua" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Latitudine" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Limite Est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Limite Ovest" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Limiti disabilitati" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Longitudine" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Collegato al Tuner A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "" @@ -743,35 +755,35 @@ msgstr "" msgid "Model: " msgstr "Modello:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulazione" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Lun" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Lun-Ven" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Lunedi" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Muovi a est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Muovi a ovest" @@ -783,125 +795,119 @@ msgstr "Menu Registrazioni" msgid "Multi EPG" msgstr "Multi-EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Non disponibile" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Nome" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Scansione Network" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Nuova Versione:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Prossimo" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Nessun Hard Disk trovato,\n" "oppure Hard Disk non inizializzato." -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Nessuna info sulla durata dell'evento, registrazione illimitata." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Nessuno" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Nulla è connesso" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Spento" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Acceso" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Uno" @@ -913,28 +919,44 @@ msgstr "Aggiornamento in linea" msgid "Packet management" msgstr "Gestione Pacchetti" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr " Vedi i programmi registrati..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Inserisci un nome per il nuovo bouquet" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -949,85 +971,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Attendere prego...carico la lista..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polarità" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarizzazione" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Porta A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Porta B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Porta C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Porta D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Motore" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Movimento motore" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Memorizza posiz. motore" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Premi OK per attivare le impostazioni" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Premi OK per avviare la scansione" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Premi OK per avviare la scansione" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Precedente" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Provider" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Providers" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Vuoi cancellare i Timer conclusi?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1035,6 +1077,14 @@ msgstr "" msgid "Recording" msgstr "Registrazione" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Rimuovi Plugins" @@ -1043,88 +1093,88 @@ msgstr "Rimuovi Plugins" msgid "Remove plugins" msgstr "Rimuovi Plugins" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Modo ripetizione" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Reset" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Sab" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satelliti" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Sabato" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Scansione Tuner" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Cavo secondario dall'LNB motorizzato" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Seleziona il canale da cui registrare" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Ripetizione sequenza" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Canali" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Setta limiti" @@ -1132,11 +1182,15 @@ msgstr "Setta limiti" msgid "Settings" msgstr "Impostazioni" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Modo Radio..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1148,12 +1202,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "Programmi simili:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Semplice" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Singolo" @@ -1161,21 +1210,21 @@ msgstr "Singolo" msgid "Single EPG" msgstr "EPG singolo" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Satellite singolo" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Transponder singolo" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Slot " -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Tuner " @@ -1189,24 +1238,24 @@ msgstr "" "\n" "Prego, scegline un'altra" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Sud" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spagnolo" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Avvio" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Avviare la registrazione?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Orario Inizio" @@ -1214,108 +1263,122 @@ msgstr "Orario Inizio" msgid "Step " msgstr "Passo " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Passo a est" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Passo a ovest" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Uscire dal Timeshift?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Vuoi fermare la riproduzione in corso?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Memorizza posizione" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Posizione memorizzata" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Dom" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Domenica" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Provider terrestre" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tre" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Soglia" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Gio" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Giovedi" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Tipo Timer" @@ -1323,67 +1386,67 @@ msgstr "Tipo Timer" msgid "Title:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Oggi" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Modo Tono" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Modo trasmissione" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Mar" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Martedi" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Sintonia" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Due" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Tipo di scan" @@ -1405,11 +1468,11 @@ msgstr "" "Per favore, fai riferimento al manuale utente.\n" "Errore: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Comando DiSEqC non impartito" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "LNB universale" @@ -1421,46 +1484,46 @@ msgstr "Aggiornamento finito. Risultato:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Aggiornamento in corso... Attendere prego... Puo' durarealcuni minuti." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Usa DHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Usa USALS per questo satellite" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Definito dall'utente" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Modo voltaggio" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Mer" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Mercoledi" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Giorno" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Ovest" @@ -1468,11 +1531,7 @@ msgstr "Ovest" msgid "Year:" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Si" @@ -1480,7 +1539,7 @@ msgstr "Si" msgid "You cannot delete this!" msgstr "Non puoi cancellarlo!" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1492,23 +1551,23 @@ msgstr "" "Il firmware del Frontprocessor deve essere aggiornato.\n" "Premi OK per aggiornare." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[Editor Bouquet]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[Editor Preferiti]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[Modalità muovi]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Esci dall'editor bouquet" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Esci dall'editor preferiti" @@ -1516,45 +1575,54 @@ msgstr "Esci dall'editor preferiti" msgid "about to start" msgstr "Sto per iniziare" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "Specifica durata registrazione" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "Registrazione illimitata" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "Registra fino al termine evento corrente" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Aggiungi canale al bouquet" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Aggiungi canale ai preferiti" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1564,39 +1632,47 @@ msgstr "" "\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "indietro" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "cambia la durata registrazione" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "circolare a sinistra" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circolare a destra" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "copia nei preferiti" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "giornaliero" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "" @@ -1604,16 +1680,16 @@ msgstr "" msgid "delete..." msgstr "cancella..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Esci dalla modalità muovi" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "Non fare nulla" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "Esci, non registrare" @@ -1621,30 +1697,34 @@ msgstr "Esci, non registrare" msgid "done!" msgstr "Fatto!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "vuoto/sconosciuto" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Abilita modifica bouquet" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Abilita modifica preferiti" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Abilita modalità muovi" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Termina modifica bouquet" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Termina modifica preferiti" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "spazio libero sul disco" @@ -1653,31 +1733,31 @@ msgstr "spazio libero sul disco" msgid "full /etc directory" msgstr "tutta la directory /etc" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "orizzontale" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "Inizializza il modulo" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "Esci dal lettore..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1686,7 +1766,11 @@ msgstr "" msgid "list" msgstr "Lista" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manuale" @@ -1695,24 +1779,20 @@ msgstr "manuale" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "prossimo canale" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "prossimo canale nella lista" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "" @@ -1720,7 +1800,7 @@ msgstr "" msgid "no HDD found" msgstr "HDD non trovato" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Modulo non trovato" @@ -1728,19 +1808,23 @@ msgstr "Modulo non trovato" msgid "none" msgstr "nessuno" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "spento" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "acceso" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "una volta" @@ -1748,15 +1832,15 @@ msgstr "una volta" msgid "only /etc/enigma2 directory" msgstr "solo la directory /etc/enigma" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1764,23 +1848,23 @@ msgstr "" msgid "pass" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "Premi OK quando pronto" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "canale precedente" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "canale precedente nella lista" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "registrazione" @@ -1788,24 +1872,28 @@ msgstr "registrazione" msgid "recording..." msgstr "registrazione..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "ripetuto" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1847,43 +1935,61 @@ msgstr "" msgid "scan state" msgstr "Stato" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "Mostra EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "Mostra dettagli evento" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "Ferma la registrazione" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "" @@ -1895,53 +2001,61 @@ msgstr "Testo" msgid "this recording" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "Canale sconosciuto" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "definito dall'utente" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "verticale" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "attendo" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "settimanale" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "si" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "" @@ -2007,6 +2121,10 @@ msgstr "Ricerca Canali" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "Menu principale" + #: ../data/ msgid "TV System" msgstr "Standard TV" @@ -2084,8 +2202,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat / Antenna Impost." +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2209,8 +2327,8 @@ msgid "Standby / Restart" msgstr "Riavvio / Spegnimento" #: ../data/ -msgid "Main menu" -msgstr "Menu principale" +msgid "Standby" +msgstr "Stand-by" #: ../data/ msgid "EPG Selection" @@ -2233,8 +2351,8 @@ msgid "Brightness" msgstr "Luminosità" #: ../data/ -msgid "Standby" -msgstr "Stand-by" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2292,6 +2410,10 @@ msgstr "Plugins scaricabili" msgid "Subservices" msgstr "Sottoservizi" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Fuso orario" @@ -2562,6 +2684,10 @@ msgstr "" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Videoregistratore" @@ -2630,6 +2756,10 @@ msgstr "" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat / Antenna Impost." + #: ../data/ msgid "What do you want to scan?" msgstr "Cosa vuoi ricercare?" @@ -2670,6 +2800,27 @@ msgstr "" msgid "Do you want to do another manual service scan?" msgstr "Vuoi fare un'altra ricerca canali manuale?" +#~ msgid "Cable provider" +#~ msgstr "Provider via cavo" + +#~ msgid "Classic" +#~ msgstr "Classico" + +#~ msgid "Equal to Socket A" +#~ msgstr "Come il Tuner A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Collegato al Tuner A" + +#~ msgid "Nothing connected" +#~ msgstr "Nulla è connesso" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Cavo secondario dall'LNB motorizzato" + +#~ msgid "Simple" +#~ msgstr "Semplice" + #~ msgid "add bouquet..." #~ msgstr "Aggiungi Bouquet..." diff --git a/po/nl.po b/po/nl.po index 6f4db567..bc1d374c 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-07-26 18:56+0100\n" "Last-Translator: Kees Aerts \n" "Language-Team: none\n" @@ -38,9 +38,9 @@ msgstr "" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -66,51 +66,63 @@ msgstr "/usr/share/enigma2 Directory" msgid "/var directory" msgstr "/var Directory" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Uigang" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -118,7 +130,7 @@ msgstr "" "Bezig met opnemen.\n" "Wat wilt u doen?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -134,38 +146,36 @@ msgstr "" "Timeropname mislukt.\n" "Verander Tvprogramma en probeer opnieuw?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Activeer PIP" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Toevoegen" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "Voeg files toe aan afspeelijst" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Timerinstellen" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Expert" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "na gebeurtenis" @@ -173,8 +183,8 @@ msgstr "na gebeurtenis" msgid "Album:" msgstr "Album:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Alles" @@ -186,37 +196,37 @@ msgstr "Arabisch" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Audio Opties..." -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Automatisch zoeken" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -232,11 +242,11 @@ msgstr "Backup Locatie" msgid "Backup Mode" msgstr "Backup Mode" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Band" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Bandbreedte" @@ -244,7 +254,7 @@ msgstr "Bandbreedte" msgid "Bus: " msgstr "Bus:" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Band" @@ -252,18 +262,14 @@ msgstr "C-Band" msgid "CF Drive" msgstr "CF Drive" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kabel provider" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Stoppen" @@ -271,11 +277,32 @@ msgstr "Stoppen" msgid "Capacity: " msgstr "Groote van harddisk: " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanaal:" @@ -283,54 +310,51 @@ msgstr "Kanaal:" msgid "Choose source" msgstr "Bron kiezen" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "klassiek" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Opruimen" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Maak scoon, Voor start zoeken" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Log Wissen" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Hoge ontvangst rate" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Lage ontvangst rate" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Commando Volgorde" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Comitted DiSEqC Bevel" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Kompleet" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Konfiguratie" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Timer Konflikt!!" @@ -338,31 +362,27 @@ msgstr "Timer Konflikt!!" msgid "Current version:" msgstr "Aktuele versie" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Deens" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Datum" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Standaard" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Verwijderen" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Verwijder Invoer" @@ -370,7 +390,7 @@ msgstr "Verwijder Invoer" msgid "Delete failed!" msgstr "Verwijderen mislukt." -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Beschrijving" @@ -382,42 +402,38 @@ msgstr "Gevonden Harddisk:" msgid "Detected NIMs:" msgstr "Gevonden Tuners:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC-Mode" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC-Mode" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC Herhaling" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Uit" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Deactiveer PIP" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -455,7 +471,7 @@ msgstr "" "wilt u nu een backup maken?\n" "Druk op OK, en wacht een moment!" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -480,11 +496,11 @@ msgstr "Downloadable nieuwe plugins" msgid "Downloading plugin information. Please wait..." msgstr "Lade Plugin-Informationen herunter. Bitte warten..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Nederlands" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "O" @@ -493,48 +509,48 @@ msgstr "O" msgid "ERROR - failed to scan (%s)!" msgstr "Fout - Zoeken mislukt (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Oost" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Aan" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "5V aan voor aktieve Antenne" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Einde" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Eindtijd" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Engels" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Ga naar hoofd menu..." -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Gelijk aan tuner A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -544,44 +560,44 @@ msgstr "Uitvoeren extern Commando" msgid "Execution finished!!" msgstr "Uitvoering gestopt!!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Snelle DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favorieten" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Fins" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Frans" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frequentie" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Vr" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Vrijdag" @@ -594,7 +610,7 @@ msgstr "Frontprocessor versie: %d" msgid "Function not yet implemented" msgstr "Nog niet ingebouwde funktie" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Gateway" @@ -602,7 +618,7 @@ msgstr "Gateway" msgid "Genre:" msgstr "Genre:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Duits" @@ -611,16 +627,16 @@ msgstr "Duits" msgid "Getting plugin information. Please wait..." msgstr "Wacht Aub haal plugin info op" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "Goto 0" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Naar positie draaien" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Guard Interval Mode" @@ -629,20 +645,20 @@ msgstr "Guard Interval Mode" msgid "Harddisk" msgstr "Harddisk" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hierarchy mode" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Hoeveel minuten wilt u opnemen?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP-Adres" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Iceland" @@ -655,11 +671,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "Voor een timer opname , is de TV naar opname service geswitcht!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Verhoogd Voltage" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Initializeren" @@ -671,34 +687,34 @@ msgstr "Format HDD" msgid "Initializing Harddisk..." msgstr "Formatting Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Directe Opname..." -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversion" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italie" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" @@ -706,40 +722,36 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Taal Keuze" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Breedtegraad" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Links" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Limiet oost" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Limiet west" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Limieten uit" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Limieten aan" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Lengtegraad" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Loopthrough met Tuner A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Handmatige transponder" @@ -748,35 +760,35 @@ msgstr "Handmatige transponder" msgid "Model: " msgstr "Model:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulatie" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Ma" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Maandag tot Vrijdag" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Maandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Verplaats Picture in Picture" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Draai naar oost" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Draai naar west" @@ -788,103 +800,99 @@ msgstr "Film Menu" msgid "Multi EPG" msgstr "Multi EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Kan meerdere Zenders Decoderen" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Multisat" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Niet Aanwezig" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Naam" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Nameserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Netmask" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Netwerk zoeken" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Nieuw" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Nieuwe versie" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Volgende" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nee" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Geen Harddisk gevonden of\n" "Hardisk is niet Geformateerd." -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Geen EPG-DATA gevonden, Start onbegrensde opname." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Geen geschiktte positioner voor frontend gevonden." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Es wurde kein Tuner für die Benutzung eines Diseqc-Rotors eingestellt." -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Geen" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Noord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Noorwegen" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Niks aangesloten" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -892,23 +900,21 @@ msgstr "" "Niks Gevonden!\n" "Stel u tuner settings in aub voor u een zoek opdracht geeft." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Uit" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Aan" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Een" @@ -920,28 +926,44 @@ msgstr "Online-Upgrade" msgid "Packet management" msgstr "Pakket beheer" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Opgenomen film afspelen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Kies een extension aub..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Voer naam in voor nieuw boeket" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Geef aub een naam in voor de nieuwe Marker" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "selecteer een subservice voor opname aub..." -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "selecteer een subservice aub..." @@ -959,85 +981,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Mom... Lijst word geladen..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polariteit" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisatie" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Port A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Port B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Port C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Rotor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "fijn afstelling Positioner" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Rotor beweging" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Rotor positie opslag" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Vooraf bepaalde satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Druk OK om settings te activeren" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Druk OK om te Zoeken." -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Druk OK om het Zoeken te starten." -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Vorige" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Provider" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Providers" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Wilt u gebruikte timers echt wissen" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1045,6 +1087,14 @@ msgstr "" msgid "Recording" msgstr "Opnemen" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Verwijder Plugins" @@ -1053,88 +1103,88 @@ msgstr "Verwijder Plugins" msgid "Remove plugins" msgstr "Verwijder plugins" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Herhaal Type" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "Vervang huidigge afspeel lijst" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Reset" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Restore" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Rechts" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Za" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satelliet" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satellieten" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Zaterdag" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Zoek NIM" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Zoek oost" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Zoek west" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Tweede kabel van Rotor" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Kies audio modus" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Kies audio spoor" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Selecteer een kanaal waarvan u wilt opnemen" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Herhaal Sequence" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanalen" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Zet Limieten" @@ -1142,11 +1192,15 @@ msgstr "Zet Limieten" msgid "Settings" msgstr "Instellingen" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Radio Weergve mode..." -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "Tv Weergve mode..." @@ -1158,12 +1212,7 @@ msgstr "Gelijkaardig" msgid "Similar broadcasts:" msgstr "Gelijkaardige uitzendingen:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Simpel" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Single" @@ -1171,21 +1220,21 @@ msgstr "Single" msgid "Single EPG" msgstr "Simple EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Single satellite" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Single transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Slot " -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Socket " @@ -1199,24 +1248,24 @@ msgstr "" "\n" "Kies een ander Aub..." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Zuid" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spaans" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Start Opnemen?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Startijd" @@ -1224,108 +1273,122 @@ msgstr "Startijd" msgid "Step " msgstr "Stap " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Stap naar oost" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Stap naar west" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Stop" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Timeshift Stoppen?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Stop afspelen deze film?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Sla positie op" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Opgeslagen positie" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Subservice lijst..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Zo" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Zondag" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Swap services" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Zweeds" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Ga naar volgende subservice" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Ga naar vorige subservice" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symbolrate" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestrial" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Regio" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Drie" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Drempel" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Do" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Donderdag" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Tijd" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Timer-Type" @@ -1333,67 +1396,67 @@ msgstr "Timer-Type" msgid "Title:" msgstr "Titel:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Vandaag" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Tone Mode" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Overdragings type" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transponder" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transponder type" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Di" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Dinsdag" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Tune" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tuner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Turks" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Twee" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Type voor zoeken" @@ -1415,11 +1478,11 @@ msgstr "" "Lees handboek na AUB.\n" "Fout: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Uncommitted DiSEqC command" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Universeel LNB" @@ -1431,46 +1494,46 @@ msgstr "Klaar met Updaten. Dit is het Resultaat:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Update is bezig. Wacht AUB. Dit kan enkele minuten duren." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "automatisch IP verkrijgen (DHCP)" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Gebruik USALS voor deze Sat" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Gebruikers mode" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "Laat teletext zien..." -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spannings mode" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "W" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Wo" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Woensdag" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Weekdag" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "West" @@ -1478,11 +1541,7 @@ msgstr "West" msgid "Year:" msgstr "Jaar:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Ja" @@ -1490,7 +1549,7 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "U kunt dit niet wissen." -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "U heeft een afspeel lijst gekozen" @@ -1502,23 +1561,23 @@ msgstr "" "De Frontprozessor-Firmware moet geupdate worden.\n" "Druk op OK, om het Upgrade te starten." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[Boeket editor]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[Favoriet editor]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[Verplaats modus]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Boeket edit stoppen" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Favoriet edit stoppen" @@ -1526,45 +1585,54 @@ msgstr "Favoriet edit stoppen" msgid "about to start" msgstr "Start direkt" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "Boeket toevoegen..." -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "Voeg directory toe aan playlist" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "Voeg file toe aan afspeellijst" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "Marker invoegen" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "Voeg opname toe (geef opnametijd aan)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "Voeg opname toe (direkt)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "Voeg opname toe (stop na huidigge opname)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Toevoegen aan Boeket" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Kanaal aan Favorieten toevoegen" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1574,39 +1642,47 @@ msgstr "" "terug zetten:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "Terug" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "Verander opname (Tijdsduur)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "circular links" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circular rechts" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "Maak afspeellijst leeg" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "Ga Verder" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "Naar favorieten copieeren" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "Dagelijks" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "Verwijder" @@ -1614,16 +1690,16 @@ msgstr "Verwijder" msgid "delete..." msgstr "Verwijderen..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Verplaats modus uitzetten" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "doe niks" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "niet opnemen" @@ -1631,30 +1707,34 @@ msgstr "niet opnemen" msgid "done!" msgstr "Klaar!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "leeg/onbekent" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Boeket edit aanzetten" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Favorieten edit aanzetten" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Verplaats modus aanzetten" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Boeket edit stoppen" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Favorieten edit stoppen" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "Vrije ruimte op Harddisk:" @@ -1663,31 +1743,31 @@ msgstr "Vrije ruimte op Harddisk:" msgid "full /etc directory" msgstr "komplete /etc directory" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "Box Uitzetten" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "Luister naar radio..." -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "verberg player" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horizontaal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "Ci-Module initializeren" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "Afspelen stoppen..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "links" @@ -1696,7 +1776,11 @@ msgstr "links" msgid "list" msgstr "lijst" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "Handmatig" @@ -1705,24 +1789,20 @@ msgstr "Handmatig" msgid "mins" msgstr "min" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "Volgende Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "zet volgend kanaal in historie" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "nee" @@ -1730,7 +1810,7 @@ msgstr "nee" msgid "no HDD found" msgstr "Geen Harddisk gevonden" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Geen Ci-Modul gevonden" @@ -1738,19 +1818,23 @@ msgstr "Geen Ci-Modul gevonden" msgid "none" msgstr "geen" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "uit" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "aan" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "Eenmalig" @@ -1758,15 +1842,15 @@ msgstr "Eenmalig" msgid "only /etc/enigma2 directory" msgstr "alleen /etc/enigma2 directory" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "open kanaal lijst" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "open kanaal lijst(naar beneden)" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "open kanaal lijst(naar boven)" @@ -1774,23 +1858,23 @@ msgstr "open kanaal lijst(naar boven)" msgid "pass" msgstr "Passage" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "Pause" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "Wanneer klaar druk O.K aub." -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "Vorig Kanaal" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "zet vorig kanaal in historie" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "opnemen" @@ -1798,24 +1882,28 @@ msgstr "opnemen" msgid "recording..." msgstr "opnemen..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "verwijder alle nieuw gevonden found flags" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "Invoer verwijderen" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "verwijder nieuw gevonden found flag" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "Herhalen" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "rechts" @@ -1857,43 +1945,61 @@ msgstr "" msgid "scan state" msgstr "Status" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "laat EPG zien..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "laat EPG details zien" -#: ../lib/python/Screens/InfoBarGenerics.py:588 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "Acteruit spoelen" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "Vooruit spoelen" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "Timeshift starten" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "stop opname" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "Timeshift stoppen" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "ga naar filelist" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "ga naar afspeellijst" @@ -1905,53 +2011,61 @@ msgstr "Text" msgid "this recording" msgstr "deze opname" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "onbekende Service" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "gebruikers mode" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "vertikaal" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "Laat extensies zien..." -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "Laat opnames zien..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "wachten" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "wekelijks" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "ja" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "ja (bewaar feeds)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "zap" @@ -2018,6 +2132,10 @@ msgstr "Kanaal zoeken" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Hoofdmenu" + #: ../data/ msgid "TV System" msgstr "Tv Systeem" @@ -2095,8 +2213,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat-/Schotel instellingen" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2220,8 +2338,8 @@ msgid "Standby / Restart" msgstr "Standby / Restart" #: ../data/ -msgid "Main menu" -msgstr "Hoofdmenu" +msgid "Standby" +msgstr "Standby" #: ../data/ msgid "EPG Selection" @@ -2244,8 +2362,8 @@ msgid "Brightness" msgstr "Helderheid" #: ../data/ -msgid "Standby" -msgstr "Standby" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2303,6 +2421,10 @@ msgstr "Downloadbare plugins" msgid "Subservices" msgstr "Subservices" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Tijdzone" @@ -2576,6 +2698,10 @@ msgstr "Aanpassen" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "VCR scart" @@ -2645,6 +2771,10 @@ msgstr "Tijd/Datum Invoer" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat-/Schotel instellingen" + #: ../data/ msgid "What do you want to scan?" msgstr "Wilt u nu zoeken?" @@ -2685,6 +2815,36 @@ msgstr "MediaPlayer" msgid "Do you want to do another manual service scan?" msgstr "Wilt u opnieuw handmatig zoeken?" +#~ msgid "Cable provider" +#~ msgstr "Kabel provider" + +#~ msgid "Classic" +#~ msgstr "klassiek" + +#~ msgid "Default" +#~ msgstr "Standaard" + +#~ msgid "Equal to Socket A" +#~ msgstr "Gelijk aan tuner A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Loopthrough met Tuner A" + +#~ msgid "Nothing connected" +#~ msgstr "Niks aangesloten" + +#~ msgid "Predefined satellite" +#~ msgstr "Vooraf bepaalde satellite" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Tweede kabel van Rotor" + +#~ msgid "Simple" +#~ msgstr "Simpel" + +#~ msgid "Swap services" +#~ msgstr "Swap services" + #~ msgid "add bouquet..." #~ msgstr "Bouquet hinzufügen..." diff --git a/po/no.po b/po/no.po index 3a7be44f..6d0d4b12 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-04-24 17:15+0100\n" "Last-Translator: MMMMMM \n" "Language-Team: none\n" @@ -37,9 +37,9 @@ msgstr "" msgid "%d min" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "" @@ -63,51 +63,63 @@ msgstr "" msgid "/var directory" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Utgang" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -115,7 +127,7 @@ msgstr "" "Et opptak kjører fortsatt.\n" "Hva vil du gjøre?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -129,38 +141,36 @@ msgstr "" "En timer startet ikke opptak.\n" "Skift program og prøv igjen?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Legge til" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Legge til timer" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Avansert" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "" @@ -168,8 +178,8 @@ msgstr "" msgid "Album:" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Alle" @@ -181,37 +191,37 @@ msgstr "Arabisk" msgid "Artist:" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Automatisk Søk" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "" @@ -227,11 +237,11 @@ msgstr "" msgid "Backup Mode" msgstr "" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Båndbredde" @@ -239,7 +249,7 @@ msgstr "Båndbredde" msgid "Bus: " msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "" @@ -247,18 +257,14 @@ msgstr "" msgid "CF Drive" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kabelleverandør" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Avbryte" @@ -266,11 +272,32 @@ msgstr "Avbryte" msgid "Capacity: " msgstr "Kapasitet: " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanal:" @@ -278,54 +305,51 @@ msgstr "Kanal:" msgid "Choose source" msgstr "Velg kilde" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Klassisk" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Opprydning" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Tøm log" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Komplett" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Konfigurasjonsmodus" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Timerkollisjon" @@ -333,31 +357,27 @@ msgstr "Timerkollisjon" msgid "Current version:" msgstr "Aktuell Versjon:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Standard" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Slette" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Slett timer" @@ -365,7 +385,7 @@ msgstr "Slett timer" msgid "Delete failed!" msgstr "Sletting feilet." -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Beskrivelse" @@ -377,42 +397,38 @@ msgstr "Gjenkjent HDD:" msgid "Detected NIMs:" msgstr "Gjenkjent Tuner:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC-Modus" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC-Modus" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Slå av" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -446,7 +462,7 @@ msgid "" "After pressing OK, please wait!" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -471,11 +487,11 @@ msgstr "Nedlastbare nye plugins" msgid "Downloading plugin information. Please wait..." msgstr "Laster ned plugin informasjon. Vennligst vent..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Nederlandsk" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "E" @@ -484,48 +500,48 @@ msgstr "E" msgid "ERROR - failed to scan (%s)!" msgstr "FEIL - kunne ikke søke (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Øst" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Slå på" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Avslutte" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Slutttid" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Engelsk" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Likt Socket A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -535,44 +551,44 @@ msgstr "Progresjon av utførelsen:" msgid "Execution finished!!" msgstr "Utførelse ferdig!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoritter" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekvens" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Fre" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Fredag" @@ -585,7 +601,7 @@ msgstr "Frontprosessor-Versjon: %d" msgid "Function not yet implemented" msgstr "Funksjon ikke enda implementert" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "" @@ -593,7 +609,7 @@ msgstr "" msgid "Genre:" msgstr "" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Tysk" @@ -602,16 +618,16 @@ msgstr "Tysk" msgid "Getting plugin information. Please wait..." msgstr "Henter Plugin-Informasjon. Vennligst vent..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Gå til posisjon" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "" @@ -620,20 +636,20 @@ msgstr "" msgid "Harddisk" msgstr "Harddisk" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Hvor mange minutter vil du ta opp?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP-Adresse" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "" @@ -646,11 +662,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "" @@ -662,34 +678,34 @@ msgstr "Initialiser" msgid "Initializing Harddisk..." msgstr "Initialiserer Harddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "" @@ -697,40 +713,36 @@ msgstr "" msgid "Language selection" msgstr "Språkvalg" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Breddegrad" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Grense øst" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Grense vest" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Ingen grense" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Lengdegrad" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Koblet med Tuner A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "" @@ -739,35 +751,35 @@ msgstr "" msgid "Model: " msgstr "Modell:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Man" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Man-Fre" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Mandag" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Flytt østover" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Flytt vestover" @@ -779,125 +791,119 @@ msgstr "Film Meny" msgid "Multi EPG" msgstr "" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Ikke tilgjengelig" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "" -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Navn" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Navneserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Nettverksmaske" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Nettverkssøk" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Ny Versjon:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Neste" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nei" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "" "Ingen harddisk funnet eller\n" "Harddisk ikke initialisert." -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Ingen EPG-data funnet. Start ubgrenset opptak." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Ingen" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Ikke noe tilkoblet" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Av" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "På" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "En" @@ -909,28 +915,44 @@ msgstr "" msgid "Packet management" msgstr "Pakkeforvaltning" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Spill av filmopptak..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Vennligst skriv navn for den nye bouquet" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "" @@ -945,85 +967,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Vennligst vent... laster liste..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polaritet" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisasjon" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Rotor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Rotorbevegelser" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Rotorlagring" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Trykk OK for å aktivere instillingene" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Trykk OK for å søke." -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Trykk OK for a starte søk." -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Tilbyder" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Tilbydere" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Skal ferdige timers virkelig slettes?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1031,6 +1073,14 @@ msgstr "" msgid "Recording" msgstr "Opptak" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Fjern Plugins" @@ -1039,88 +1089,88 @@ msgstr "Fjern Plugins" msgid "Remove plugins" msgstr "Fjern plugins" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Tilbakestill" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Lør" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellit" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satelliter" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Lørdag" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Velg kanal å ta opp fra" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanaler" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Sett grenser" @@ -1128,11 +1178,15 @@ msgstr "Sett grenser" msgid "Settings" msgstr "Innstillinger" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Vis radio spilleren" -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1144,12 +1198,7 @@ msgstr "" msgid "Similar broadcasts:" msgstr "" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Enkel" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Singel" @@ -1157,21 +1206,21 @@ msgstr "Singel" msgid "Single EPG" msgstr "Enkel EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Singel satellit" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Singel transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Sokkel " @@ -1182,24 +1231,24 @@ msgid "" "Please choose an other one." msgstr "" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Sør" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spansk" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Start opptak?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "StartTid" @@ -1207,108 +1256,122 @@ msgstr "StartTid" msgid "Step " msgstr "Steg " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Steg øst" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Steg vest" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Stopp Timeshift?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Stoppe avspilling av denne filmen?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Lagret posisjon" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Lagret posisjon" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Søn" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Søndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symbolrate" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Region" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tre" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Grense" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Tor" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Torsdag" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Timer Type" @@ -1316,67 +1379,67 @@ msgstr "Timer Type" msgid "Title:" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Idag" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Sendingstype" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Tir" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Tirsdag" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "To" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Søketype" @@ -1398,11 +1461,11 @@ msgstr "" "Vennligst les manualen.\n" "Feil: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "" @@ -1414,46 +1477,46 @@ msgstr "Oppdatering avsluttet. Her er resultatet:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Oppdaterer...Vennligst vent..Dette kan ta noen minutter " -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Motta IP-adresse (DHCP)" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Bruk USALS for denne Sat" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Brukerdefinert" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spenningsmodus" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Ons" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Onsdag" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Ukedag" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Vest" @@ -1461,11 +1524,7 @@ msgstr "Vest" msgid "Year:" msgstr "" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Ja" @@ -1473,7 +1532,7 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Du kan ikke slette denne!." -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1485,23 +1544,23 @@ msgstr "" "Din frontprosessor-firmware må oppgraderes.\n" "Trykk OK for å starte oppdatering." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "BouquetEditor" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "Favoritteditor" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "Flyttemodus" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Avbryt Bouqueteditor" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Avbryt Favoritteditor" @@ -1509,45 +1568,54 @@ msgstr "Avbryt Favoritteditor" msgid "about to start" msgstr "starter snart" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Legg kanal til bouquet" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Legg kanal til favoritter" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1555,39 +1623,47 @@ msgid "" msgstr "" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "Tilbake" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "Sirkulær venstre" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "Sirkulær høyre" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "Kopier til favoritter" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "Daglig" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "" @@ -1595,16 +1671,16 @@ msgstr "" msgid "delete..." msgstr "Slette..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Slå av flyttemodus" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "gjør ingenting" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "Ikke ta opp" @@ -1612,30 +1688,34 @@ msgstr "Ikke ta opp" msgid "done!" msgstr "ferdig!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "Tom/ukjent" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Aktiver Bouqueteditor" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Aktiver Favoritteditor" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Aktiver flyttemodus" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Avslutt Bouqueteditor" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Avslutt Favorittteditor" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "Ledig diskplass" @@ -1644,31 +1724,31 @@ msgstr "Ledig diskplass" msgid "full /etc directory" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "Horisontal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "Initialisere modul" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "Forlat filmavspiller..." -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1677,7 +1757,11 @@ msgstr "" msgid "list" msgstr "" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "Manuell" @@ -1686,24 +1770,20 @@ msgstr "Manuell" msgid "mins" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "Neste kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "Nei" @@ -1711,7 +1791,7 @@ msgstr "Nei" msgid "no HDD found" msgstr "Ingen harddisk funnet" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Ingen modul funnet" @@ -1719,19 +1799,23 @@ msgstr "Ingen modul funnet" msgid "none" msgstr "Ingen" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "Av" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "På" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "En gang" @@ -1739,15 +1823,15 @@ msgstr "En gang" msgid "only /etc/enigma2 directory" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1755,23 +1839,23 @@ msgstr "" msgid "pass" msgstr "Gjennomgang" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "Trykk OK når det er klart" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "Forrige kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "" @@ -1779,24 +1863,28 @@ msgstr "" msgid "recording..." msgstr "tar opp..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "Gjentatt" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1838,43 +1926,61 @@ msgstr "" msgid "scan state" msgstr "SøkeStatus" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "Vis EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "Vis sendingdetaljer" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "stopp opptak" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "" @@ -1886,53 +1992,61 @@ msgstr "Tekst" msgid "this recording" msgstr "" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "Ukjent kanal" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "Brukerdefinert" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "Vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "venter" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "Ukentlig" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "Ja" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "" @@ -1998,6 +2112,10 @@ msgstr "Kanalsøk" msgid "DiSEqC" msgstr "" +#: ../data/ +msgid "Main menu" +msgstr "Hovedmeny" + #: ../data/ msgid "TV System" msgstr "TV System" @@ -2073,8 +2191,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat-/Parabolinstillinger" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2196,8 +2314,8 @@ msgid "Standby / Restart" msgstr "Standby / Start om" #: ../data/ -msgid "Main menu" -msgstr "Hovedmeny" +msgid "Standby" +msgstr "" #: ../data/ msgid "EPG Selection" @@ -2220,7 +2338,7 @@ msgid "Brightness" msgstr "Lysstyrke" #: ../data/ -msgid "Standby" +msgid "Parental control services Editor" msgstr "" #: ../data/ @@ -2279,6 +2397,10 @@ msgstr "Nedlastbare plugins" msgid "Subservices" msgstr "Underkanaler" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Tidssone" @@ -2550,6 +2672,10 @@ msgstr "" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "" @@ -2618,6 +2744,10 @@ msgstr "" msgid "AGC:" msgstr "" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat-/Parabolinstillinger" + #: ../data/ msgid "What do you want to scan?" msgstr "Hva vil du søke etter?" @@ -2658,6 +2788,27 @@ msgstr "" msgid "Do you want to do another manual service scan?" msgstr "Vil du gjøre enda et manuelt kanalsøk?" +#~ msgid "Cable provider" +#~ msgstr "Kabelleverandør" + +#~ msgid "Classic" +#~ msgstr "Klassisk" + +#~ msgid "Default" +#~ msgstr "Standard" + +#~ msgid "Equal to Socket A" +#~ msgstr "Likt Socket A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Koblet med Tuner A" + +#~ msgid "Nothing connected" +#~ msgstr "Ikke noe tilkoblet" + +#~ msgid "Simple" +#~ msgstr "Enkel" + #~ msgid "add bouquet..." #~ msgstr "Legg til bouquet..." diff --git a/po/sv.po b/po/sv.po index f82170a6..f9cd4a53 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-09-06 13:57+0200\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-08-10 11:35+0100\n" "Last-Translator: WeeGull \n" "Language-Team: none\n" @@ -37,9 +37,9 @@ msgstr "\"?" msgid "%d min" msgstr "%d min" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -65,51 +65,63 @@ msgstr "/usr/share/enigma2 bibliotek" msgid "/var directory" msgstr "/var bibliotek" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Ut" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "??" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -117,7 +129,7 @@ msgstr "" "En inspelning pågår redan.\n" "Vad vill du göra?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -131,38 +143,36 @@ msgstr "" "En timerinspelning misslyckades!\n" "Inaktivera TV och försök igen?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1165 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Aktivera Bild i Bild" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Lägg till" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "Lägg till i spellista" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Lägg till timer" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Avancerat" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Efter program" @@ -170,8 +180,8 @@ msgstr "Efter program" msgid "Album:" msgstr "Album:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:623 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Alla" @@ -183,37 +193,37 @@ msgstr "Arabiska" msgid "Artist:" msgstr "Artist:" -#: ../lib/python/Screens/InfoBarGenerics.py:1336 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "Ljud optioner..." -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "Auto" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Automatisk Sökning" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -229,11 +239,11 @@ msgstr "Backups Placering" msgid "Backup Mode" msgstr "Backup Läge" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "Band" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "Bandbredd" @@ -241,7 +251,7 @@ msgstr "Bandbredd" msgid "Bus: " msgstr "Bus: " -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Band" @@ -249,18 +259,14 @@ msgstr "C-Band" msgid "CF Drive" msgstr "CF Disk" -#: ../lib/python/Screens/ChannelSelection.py:736 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kabel" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "KabelTV leverantör" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Avbryt" @@ -268,11 +274,32 @@ msgstr "Avbryt" msgid "Capacity: " msgstr "Kapacitet: " -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanal:" @@ -280,54 +307,51 @@ msgstr "Kanal:" msgid "Choose source" msgstr "Välj källa" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Klassisk" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Rensa" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "Rensa före sökning" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Rensa log" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Code rate hög" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Code rate låg" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Kommando ordning" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Committed DiSEqC kommando" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Komplett" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Inställningar" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Timerkonflikt" @@ -335,31 +359,27 @@ msgstr "Timerkonflikt" msgid "Current version:" msgstr "Aktuell Version:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Danska" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Datum" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Standard" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Ta bort" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Ta bort post" @@ -367,7 +387,7 @@ msgstr "Ta bort post" msgid "Delete failed!" msgstr "Borttagning misslyckades!" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Beskrivning" @@ -379,43 +399,35 @@ msgstr "Hittad Hårddisk:" msgid "Detected NIMs:" msgstr "Hittad NIMs:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC Läge" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC läge" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC repetetioner" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Avaktivera" -#: ../lib/python/Screens/InfoBarGenerics.py:1163 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Avaktivera Bild i Bild" -#: ../lib/python/Screens/InfoBarGenerics.py:1120 +#: ../lib/python/Screens/InfoBarGenerics.py:1122 msgid "Disable subtitles" msgstr "" @@ -456,7 +468,7 @@ msgstr "" "Vill du ta en backup nu?\n" "Tryck OK och vänligen vänta!" -#: ../lib/python/Screens/InfoBarGenerics.py:1605 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "Vill du återuppta uppspelningen?" @@ -481,11 +493,11 @@ msgstr "Nerladdningsbara nya plugins" msgid "Downloading plugin information. Please wait..." msgstr "Laddar ner information om pluginet. Var vänlig vänta..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Holländska" -#: ../lib/python/Screens/ChannelSelection.py:744 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "Ö" @@ -494,48 +506,48 @@ msgstr "Ö" msgid "ERROR - failed to scan (%s)!" msgstr "FEL - misslyckades söka (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Öst" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Aktivera" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "Aktivera 5V för aktiv antenn" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Slut" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "SlutTid" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "Engelska" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "Gå till huvudmeny" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Likadant som Tuner A" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -545,44 +557,44 @@ msgstr "Exekverings Framsteg:" msgid "Execution finished!!" msgstr "Exekvering färdig!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Fast DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favoriter" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Finska" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Franska" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekvens" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Fre" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Fredag" @@ -595,7 +607,7 @@ msgstr "Frontprocessor version: %d" msgid "Function not yet implemented" msgstr "Funktionen är inte implementerad" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Gateway" @@ -603,7 +615,7 @@ msgstr "Gateway" msgid "Genre:" msgstr "Genre:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Tyska" @@ -612,16 +624,16 @@ msgstr "Tyska" msgid "Getting plugin information. Please wait..." msgstr "Hämtar plugin information. Var vänlig vänta..." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "Gå till 0" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Gå till position" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Guard interval läge" @@ -630,20 +642,20 @@ msgstr "Guard interval läge" msgid "Harddisk" msgstr "Hårddisk" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Hierarkiskt läge" -#: ../lib/python/Screens/InfoBarGenerics.py:1302 -#: ../lib/python/Screens/InfoBarGenerics.py:1310 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Hur många minuter vill du spela in?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP Adress" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "Isländska" @@ -656,11 +668,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "För att göra en timerinspelning, var TV växlad till inspelad kanal!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Ökad spänning" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "Initiera" @@ -672,34 +684,34 @@ msgstr "Initiera" msgid "Initializing Harddisk..." msgstr "Initierar Hårddisk..." -#: ../lib/python/Screens/InfoBarGenerics.py:1212 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "Direkt inspelning..." -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Inversion" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "Italienska" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" @@ -707,40 +719,36 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Välj språk" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Latitud" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "Vänster" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Östlig gräns" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Västlig gräns" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Gränser av" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Gränser på" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Longitud" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Loopa igenom till Tuner A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "Manuell transponder" @@ -749,35 +757,35 @@ msgstr "Manuell transponder" msgid "Model: " msgstr "Modell: " -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modulering" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Mån" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Mån-Fre" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Måndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1171 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Flytta Bild i Bild" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Flytta öst" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Flytta väst" @@ -789,101 +797,97 @@ msgstr "Film Meny" msgid "Multi EPG" msgstr "Multi EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "Multipla kanaler stöds" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Multisat" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "Inte Tillgänglig" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "Namn" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Namnserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Nätmask" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Sök Nätverk" -#: ../lib/python/Screens/ChannelSelection.py:728 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Ny" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Ny Version:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Nästa" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Nej" -#: ../lib/python/Screens/InfoBarGenerics.py:1322 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "Ingen hårddisk funnen eller initialiserad!" -#: ../lib/python/Screens/InfoBarGenerics.py:1255 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Ingen programinfo hittades, inspelning oändlig." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "Ingen positioner kapabel frontend funnet." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Ingen tuner är konfigurerad för diseqc positioner!" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Inga" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Nord" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norska" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Ingenting är anslutet" - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." @@ -891,23 +895,21 @@ msgstr "" "Inget att scanna!\n" "Vänligen konfigurera tuner före scanning efter kanaler." -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Av" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "På" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "En" @@ -919,28 +921,44 @@ msgstr "Online Uppgradering" msgid "Packet management" msgstr "Pakethantering" +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Spela inspelade filmer..." -#: ../lib/python/Screens/InfoBarGenerics.py:1085 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Vänligen välj en utökning..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Ange namn för den nya bouquet" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "Vänligen ange namn för ny markör" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Vänligen välj en underkanal för inspelning..." -#: ../lib/python/Screens/InfoBarGenerics.py:1473 -#: ../lib/python/Screens/SubservicesQuickzap.py:93 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Vänligen välj en underkanal..." @@ -959,85 +977,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Vänligen vänta... Laddar lista..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Polaritet" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Polarisation" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Port A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Port B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Port C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Motor" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Motor finstegning" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Motor rörelse" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Motor lagring" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Fördefinerad satelliter" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Tryck OK för aktivera inställningarna." -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Tryck OK för sökning" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Tryck OK för starta sökning" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Föregående" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:619 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Leverantör" -#: ../lib/python/Screens/ChannelSelection.py:726 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Leverantörer" -#: ../lib/python/Screens/InfoBarGenerics.py:1469 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "Quickzap" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Verkligen ta bort färdiga timerinspelningar?" -#: ../lib/python/Screens/SubservicesQuickzap.py:104 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "Verkligen avsluta underkanals quickzap?" @@ -1045,6 +1083,14 @@ msgstr "Verkligen avsluta underkanals quickzap?" msgid "Recording" msgstr "Spelar in" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Ta bort Plugins" @@ -1053,88 +1099,88 @@ msgstr "Ta bort Plugins" msgid "Remove plugins" msgstr "Ta bort plugins" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Repeat Typ" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "Byt ut nuvarande spellista" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Nollställ" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Återställ" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "Höger" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Lör" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Satellit" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:621 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Satelliter" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Lördag" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "Scanna NIM" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Sök öst" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Sök väst" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "Andra kabeln från Motor" - -#: ../lib/python/Screens/InfoBarGenerics.py:1388 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "Välj ljudläge" -#: ../lib/python/Screens/InfoBarGenerics.py:1377 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Välj ljudspår" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Välj kanal att spela in från" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Repetera sekvens" -#: ../lib/python/Screens/ChannelSelection.py:730 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Kanaler" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Ange gräns" @@ -1142,6 +1188,10 @@ msgstr "Ange gräns" msgid "Settings" msgstr "Inställningar" +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + #: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Visa radiospelaren..." @@ -1158,12 +1208,7 @@ msgstr "Liknande" msgid "Similar broadcasts:" msgstr "Liknande sändningar:" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Enkelt" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Singel" @@ -1171,21 +1216,21 @@ msgstr "Singel" msgid "Single EPG" msgstr "Singel EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Singel satellit" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Singel transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Slot " -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Sockel " @@ -1199,24 +1244,24 @@ msgstr "" "\n" "Vänligen ange annan." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Syd" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "Spanska" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Start" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Starta inspelning?" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "StartTid" @@ -1224,26 +1269,26 @@ msgstr "StartTid" msgid "Step " msgstr "Steg " -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Stega öst" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Stega väst" -#: ../lib/python/Screens/InfoBarGenerics.py:1376 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "Stereo" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Stopp" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Stoppa Timeshift?" @@ -1251,81 +1296,95 @@ msgstr "Stoppa Timeshift?" msgid "Stop playing this movie?" msgstr "Stoppa uppspelningen?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Lagra position" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Lagrad position" -#: ../lib/python/Screens/InfoBarGenerics.py:1407 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Underkanalslista..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "Sön" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Söndag" -#: ../lib/python/Screens/InfoBarGenerics.py:1168 +#: ../lib/python/Screens/InfoBarGenerics.py:1170 msgid "Swap Services" msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "Svenska" -#: ../lib/python/Screens/InfoBarGenerics.py:1412 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Byt till nästa underkanal" -#: ../lib/python/Screens/InfoBarGenerics.py:1413 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Byt till föregående underkanal" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Symbolrate" -#: ../lib/python/Screens/ChannelSelection.py:738 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Terrestrial" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Terrestrial leverantör" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Tre" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Gränsvärde" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Tors" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Torsdag" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Tid" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Timertyp" @@ -1333,67 +1392,67 @@ msgstr "Timertyp" msgid "Title:" msgstr "Title:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Idag" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Tone läge" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Toneburst A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "Sändningstyp" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transponder" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transponertyp" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Tis" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Tisdag" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "Tune" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tuner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "Turkiska" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "Två" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Typ av sökning" @@ -1415,11 +1474,11 @@ msgstr "" "Var vänlig läs i manualen.\n" "Fel: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Uncommitted DiSEqC kommando" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Universal LNB" @@ -1431,46 +1490,46 @@ msgstr "Uppdatering utförd. Här är resultatet:" msgid "Updating... Please wait... This can take some minutes..." msgstr "Uppdaterar... Vänlig vänta... Detta tar några minuter...." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "Använd DHCP" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Använd USALS för denna sat" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Användardefinierat" -#: ../lib/python/Screens/InfoBarGenerics.py:1743 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "Visa teletext..." -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Spännings läge" -#: ../lib/python/Screens/ChannelSelection.py:742 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "V" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Ons" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Onsdag" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Veckodag" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Väst" @@ -1478,11 +1537,7 @@ msgstr "Väst" msgid "Year:" msgstr "År:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Ja" @@ -1490,7 +1545,7 @@ msgstr "Ja" msgid "You cannot delete this!" msgstr "Du kan inte ta bort detta!" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "Du valde en spellista" @@ -1502,23 +1557,23 @@ msgstr "" "Din frontprocessor firmware måste uppgraderas.\n" "Tryck OK för att starta." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[bouquet editor]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[favoriter editor]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[flytt läge]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "avbryt editera bouquet" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "avbryt editera favoriter" @@ -1526,45 +1581,54 @@ msgstr "avbryt editera favoriter" msgid "about to start" msgstr "håller på startar" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "lägg till bouquet" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "lägg till bibliotek till playlist" -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "lägg till fil i playlist" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "lägg till markör" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "lägg till inspelning (ange inspelningslängd)" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "lägg till inspelning (oändlig)" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 #: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "lägg till inspelning (avsluta efter nuvarande)" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "lägg till kanal till bouquet" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "lägg till kanal i favoriter" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1574,39 +1638,47 @@ msgstr "" "med följande backup:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "tillbaka" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "ändra inspelning (längd)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "cirkulär vänster" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "circulär höger" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "rensa playlist" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "forsätt" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "kopiera till favoriter" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "daglig" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "ta bort" @@ -1614,16 +1686,16 @@ msgstr "ta bort" msgid "delete..." msgstr "ta bort..." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "avaktivera flyttläge" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "gör inget" -#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "spela inte in" @@ -1631,30 +1703,34 @@ msgstr "spela inte in" msgid "done!" msgstr "klar!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "tom/okänd" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "aktivera bouquet editor" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "aktivera favoriter editor" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "aktivera flyttläge" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "avsluta bouquet editor" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "avsluta favoriter editor" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "ledigt diskutrymme" @@ -1663,7 +1739,7 @@ msgstr "ledigt diskutrymme" msgid "full /etc directory" msgstr "fullt /etc bibliotek" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "Stäng av mottagaren" @@ -1671,15 +1747,15 @@ msgstr "Stäng av mottagaren" msgid "hear radio..." msgstr "lyssna på radio..." -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "göm spelare" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "horisontal" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "initialisera modul" @@ -1687,7 +1763,7 @@ msgstr "initialisera modul" msgid "leave movie player..." msgstr "lämna videospelare..." -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "vänster" @@ -1696,7 +1772,11 @@ msgstr "vänster" msgid "list" msgstr "list" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "manuell" @@ -1705,24 +1785,20 @@ msgstr "manuell" msgid "mins" msgstr "min" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "nästa kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "nästa kanal i historiken" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "nej" @@ -1730,7 +1806,7 @@ msgstr "nej" msgid "no HDD found" msgstr "ingen hårddisk hittad" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "ingen modul hittad" @@ -1738,19 +1814,23 @@ msgstr "ingen modul hittad" msgid "none" msgstr "ingen" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "av" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "på" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "en gång" @@ -1758,15 +1838,15 @@ msgstr "en gång" msgid "only /etc/enigma2 directory" msgstr "bara /etc/enigma2 bibliotek" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "öppna kanallista" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "öppna kanallista(ner)" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "öppna kanallista(upp)" @@ -1774,23 +1854,23 @@ msgstr "öppna kanallista(upp)" msgid "pass" msgstr "klart" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "paus" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "tryck OK när färdig" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "föregående kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "föregående kanal i historiken" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "spela in" @@ -1798,24 +1878,28 @@ msgstr "spela in" msgid "recording..." msgstr "spelar in..." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "ta bort alla ny hittad flagga" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "ta bort post" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "ta bort ny hittad flagga" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "repeterande" -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "höger" @@ -1857,43 +1941,61 @@ msgstr "" msgid "scan state" msgstr "söknings status" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "visa EPG..." -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "visa program detaljer" -#: ../lib/python/Screens/InfoBarGenerics.py:588 +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:585 msgid "skip backward" msgstr "hoppa bakåt" -#: ../lib/python/Screens/InfoBarGenerics.py:585 +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "hoppa framåt" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "starta timeshift" -#: ../lib/python/Screens/InfoBarGenerics.py:1387 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "stereo" -#: ../lib/python/Screens/InfoBarGenerics.py:1326 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "stoppa inspelning" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "stoppa timeshift" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "byt till fillista" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "byt till playlist" @@ -1905,19 +2007,27 @@ msgstr "text" msgid "this recording" msgstr "denna inspelning" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "okänd kanal" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "användardefinierad" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "vertikal" -#: ../lib/python/Screens/InfoBarGenerics.py:1033 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "visa utökningar" @@ -1925,33 +2035,33 @@ msgstr "visa utökningar" msgid "view recordings..." msgstr "visa inspelningar..." +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "väntar" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "veckolig" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "ja" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "ja (behåll feeds)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "zap" @@ -2017,6 +2127,10 @@ msgstr "Kanalsökning" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Huvudmeny" + #: ../data/ msgid "TV System" msgstr "TV System" @@ -2069,8 +2183,8 @@ msgid "Do you want to view a tutorial?" msgstr "Vill du se en guide?" #: ../data/ -msgid "Setup" -msgstr "Installation" +msgid "No, do nothing." +msgstr "Nej, gör inget." #: ../data/ msgid "#000000" @@ -2093,8 +2207,8 @@ msgid "#bab329" msgstr "" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Sat / Parabol Installation" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2110,17 +2224,13 @@ msgstr "" "Tryck OK för att starta backup." #: ../data/ -msgid "The wizard is finished now." -msgstr "Guiden är nu färdig." +msgid "Mute" +msgstr "Ljud av" #: ../data/ msgid "Service Searching" msgstr "Kanalsökning" -#: ../data/ -msgid "Mute" -msgstr "Ljud av" - #: ../data/ msgid "" "Welcome to the Image upgrade wizard. The wizard will assist you in upgrading " @@ -2144,6 +2254,16 @@ msgstr "Aktivera flera bouquets" msgid "Keyboard Setup" msgstr "Tangentbords inställning" +#: ../data/ +msgid "" +"Use the left and right buttons to change an option.\n" +"\n" +"Please set up tuner A" +msgstr "" +"Använd vänster och höger pil för att ändra ett val.\n" +"\n" +"Inställning Tuner A" + #: ../data/ msgid "Dish" msgstr "Parabol" @@ -2152,10 +2272,6 @@ msgstr "Parabol" msgid "Margin after record" msgstr "Marginal efter inspelning" -#: ../data/ -msgid "No, just start my dreambox" -msgstr "Nej, starta bara dreamboxen" - #: ../data/ msgid "#ffffffff" msgstr "" @@ -2185,29 +2301,25 @@ msgid "Manual Scan" msgstr "Manuell Sökning" #: ../data/ -msgid "" -"Welcome.\n" -"\n" -"This start wizard will guide you through the basic setup of your Dreambox.\n" -"Press the OK button on your remote control to move to the next step." -msgstr "" -"Välkommen.\n" -"\n" -"Den här guiden hjälper dig med grundinställningarna av din Dreambox.\n" -"Tryck OK på din fjärrkontroll för att komma till nästa steg." +msgid "Timer Edit" +msgstr "Ändra Timer" #: ../data/ msgid "RC Menu" msgstr "Fjärrkontroll Meny" #: ../data/ -msgid "SNR:" -msgstr "SNR:" +msgid "No, just start my dreambox" +msgstr "Nej, starta bara dreamboxen" #: ../data/ msgid "Network..." msgstr "Nätverk..." +#: ../data/ +msgid "Tuner configuration" +msgstr "Tuner konfiguration" + #: ../data/ msgid "select Slot" msgstr "välj Slot" @@ -2221,8 +2333,8 @@ msgid "Standby / Restart" msgstr "Avstängning / Omstart" #: ../data/ -msgid "Main menu" -msgstr "Huvudmeny" +msgid "Standby" +msgstr "Avstängning" #: ../data/ msgid "EPG Selection" @@ -2245,8 +2357,12 @@ msgid "Brightness" msgstr "Ljusstyrka" #: ../data/ -msgid "Standby" -msgstr "Avstängning" +msgid "Parental control services Editor" +msgstr "" + +#: ../data/ +msgid "Yes, do another manual scan now" +msgstr "Ja, utför manuell sökning igen" #: ../data/ msgid "Activate network settings" @@ -2284,6 +2400,10 @@ msgstr "Plugin browser" msgid "#80000000" msgstr "" +#: ../data/ +msgid "SNR:" +msgstr "SNR:" + #: ../data/ msgid "Timeshift" msgstr "Timeshift" @@ -2293,8 +2413,12 @@ msgid "Downloadable plugins" msgstr "Nerladdningsbara plugins" #: ../data/ -msgid "Do you want to view a cutlist tutorial?" -msgstr "Vill du visa cutlist guiden?" +msgid "Subservices" +msgstr "Underkanal" + +#: ../data/ +msgid "Parental control setup" +msgstr "" #: ../data/ msgid "Timezone" @@ -2316,10 +2440,6 @@ msgstr "Sök" msgid "Common Interface" msgstr "Common Interface" -#: ../data/ -msgid "Tuner configuration" -msgstr "Tuner konfiguration" - #: ../data/ msgid "Language..." msgstr "Språk..." @@ -2347,8 +2467,8 @@ msgid "Service scan" msgstr "Kanalsökning" #: ../data/ -msgid "Yes, do another manual scan now" -msgstr "Ja, utför manuell sökning igen" +msgid "The wizard is finished now." +msgstr "Guiden är nu färdig." #: ../data/ msgid "LCD Setup" @@ -2484,10 +2604,6 @@ msgstr "Avsluta guiden" msgid "Media player" msgstr "Media spelare" -#: ../data/ -msgid "Yes, perform a shutdown now." -msgstr "Ja, utför avstängning nu." - #: ../data/ msgid "Timer sanity error" msgstr "Timer fel" @@ -2508,10 +2624,6 @@ msgstr "Din Dreambox håller på att stängas ner. Vänlig vänta..." msgid "WSS on 4:3" msgstr "WSS på 4:3" -#: ../data/ -msgid "Subservices" -msgstr "Underkanal" - #: ../data/ msgid "Choose bouquet" msgstr "Välj bouquet" @@ -2580,6 +2692,10 @@ msgstr "Inställningar" msgid "#389416" msgstr "" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "Video scart" @@ -2605,12 +2721,20 @@ msgid "Alpha" msgstr "Alpha" #: ../data/ -msgid "Timer Edit" -msgstr "Ändra Timer" +msgid "" +"Welcome.\n" +"\n" +"This start wizard will guide you through the basic setup of your Dreambox.\n" +"Press the OK button on your remote control to move to the next step." +msgstr "" +"Välkommen.\n" +"\n" +"Den här guiden hjälper dig med grundinställningarna av din Dreambox.\n" +"Tryck OK på din fjärrkontroll för att komma till nästa steg." #: ../data/ -msgid "No, do nothing." -msgstr "Nej, gör inget." +msgid "Setup" +msgstr "Installation" #: ../data/ msgid "This is unsupported at the moment." @@ -2640,6 +2764,10 @@ msgstr "Tid/Datum Inmatning" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Sat / Parabol Installation" + #: ../data/ msgid "What do you want to scan?" msgstr "Vad vill du söka efter?" @@ -2665,14 +2793,8 @@ msgid "NOW" msgstr "NU" #: ../data/ -msgid "" -"Use the left and right buttons to change an option.\n" -"\n" -"Please set up tuner A" -msgstr "" -"Använd vänster och höger pil för att ändra ett val.\n" -"\n" -"Inställning Tuner A" +msgid "Yes, perform a shutdown now." +msgstr "Ja, utför avstängning nu." #: ../data/ msgid "#0064c7" @@ -2686,6 +2808,36 @@ msgstr "MediaSpelare" msgid "Do you want to do another manual service scan?" msgstr "Vill du göra en ny manuell sökning?" +#~ msgid "Cable provider" +#~ msgstr "KabelTV leverantör" + +#~ msgid "Classic" +#~ msgstr "Klassisk" + +#~ msgid "Default" +#~ msgstr "Standard" + +#~ msgid "Equal to Socket A" +#~ msgstr "Likadant som Tuner A" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Loopa igenom till Tuner A" + +#~ msgid "Nothing connected" +#~ msgstr "Ingenting är anslutet" + +#~ msgid "Predefined satellite" +#~ msgstr "Fördefinerad satelliter" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "Andra kabeln från Motor" + +#~ msgid "Simple" +#~ msgstr "Enkelt" + +#~ msgid "Do you want to view a cutlist tutorial?" +#~ msgstr "Vill du visa cutlist guiden?" + #~ msgid "Swap services" #~ msgstr "Byt kanal" diff --git a/po/tr.po b/po/tr.po index 2e3f52ed..d19951e3 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-08-05 19:29+0000\n" +"POT-Creation-Date: 2006-10-11 01:01+0200\n" "PO-Revision-Date: 2006-06-16 12:51+0200\n" "Last-Translator: koksal \n" "Language-Team: GökselD& \n" @@ -34,9 +34,9 @@ msgstr "\"?" msgid "%d min" msgstr "%d Enaz" -#: ../lib/python/Screens/TimerEntry.py:106 -#: ../lib/python/Screens/TimerEntry.py:109 -#: ../lib/python/Screens/TimeDateInput.py:49 +#: ../lib/python/Screens/TimerEntry.py:90 +#: ../lib/python/Screens/TimerEntry.py:93 +#: ../lib/python/Screens/TimeDateInput.py:35 msgid "%d.%B %Y" msgstr "%d.%B %Y" @@ -62,51 +62,63 @@ msgstr "/usr/share/enigma2 Klasörü" msgid "/var directory" msgstr "/var Klasörü" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "0 V" msgstr "0 V" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.0" msgstr "1.0" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.1" msgstr "1.1" -#: ../lib/python/Components/NimManager.py:761 +#: ../lib/python/Components/NimManager.py:766 msgid "1.2" msgstr "1.2" -#: ../lib/python/Components/NimManager.py:758 +#: ../lib/python/Components/NimManager.py:763 msgid "12 V" msgstr "12 V" -#: ../lib/python/Screens/Satconfig.py:150 +#: ../lib/python/Screens/Satconfig.py:138 msgid "12V Output" msgstr "12V Çıkış" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "13 V" msgstr "13 V" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "18 V" msgstr "18 V" +#: ../lib/python/Components/ParentalControl.py:14 +msgid "30 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "5 minutes" +msgstr "" + +#: ../lib/python/Components/ParentalControl.py:14 +msgid "60 minutes" +msgstr "" + #: ../lib/python/Components/TimerList.py:66 msgid "" msgstr "" -#: ../lib/python/Screens/Setup.py:131 +#: ../lib/python/Screens/Setup.py:118 msgid "??" msgstr "" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "A" msgstr "A" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "" "A recording is currently running.\n" "What do you want to do?" @@ -114,7 +126,7 @@ msgstr "" "Kayıt Helen devamediyor.\n" "Ne Yapmak İstiyorsunuz?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:506 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:511 msgid "" "A recording is currently running. Please stop the recording before trying to " "configure the positioner." @@ -128,38 +140,36 @@ msgstr "" "Kayıtda Zaman Hatası!\n" "TV Devredışı bırak veya tekrar dene?\n" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AA" msgstr "AA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "AB" msgstr "AB" -#: ../lib/python/Screens/InfoBarGenerics.py:1043 +#: ../lib/python/Screens/InfoBarGenerics.py:1167 msgid "Activate Picture in Picture" msgstr "Etkinleştir Resim İçinde Resim" -#: ../lib/python/Screens/TimerEdit.py:27 +#: ../lib/python/Screens/TimerEdit.py:25 msgid "Add" msgstr "Yeni" -#: ../lib/python/Screens/MediaPlayer.py:346 +#: ../lib/python/Screens/MediaPlayer.py:388 msgid "Add files to playlist" msgstr "" #: ../lib/python/Screens/EventView.py:32 -#: ../lib/python/Screens/EpgSelection.py:60 +#: ../lib/python/Screens/EpgSelection.py:59 msgid "Add timer" msgstr "Yeni Zaman" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:688 #: ../lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py:31 msgid "Advanced" msgstr "Gelişmiş" -#: ../lib/python/Screens/TimerEntry.py:195 +#: ../lib/python/Screens/TimerEntry.py:171 msgid "After event" msgstr "Olaydan Sonra" @@ -167,8 +177,8 @@ msgstr "Olaydan Sonra" msgid "Album:" msgstr "Albüm:" -#: ../lib/python/Screens/ChannelSelection.py:474 -#: ../lib/python/Screens/ChannelSelection.py:622 +#: ../lib/python/Screens/ChannelSelection.py:497 +#: ../lib/python/Screens/ChannelSelection.py:647 msgid "All" msgstr "Hepsi" @@ -180,37 +190,37 @@ msgstr "Arapça" msgid "Artist:" msgstr "Sanatçı:" -#: ../lib/python/Screens/InfoBarGenerics.py:1224 +#: ../lib/python/Screens/InfoBarGenerics.py:1338 msgid "Audio Options..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:376 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:378 #: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:383 +#: ../lib/python/Screens/ScanSetup.py:384 +#: ../lib/python/Screens/ScanSetup.py:385 #: ../lib/python/Screens/ScanSetup.py:386 -#: ../lib/python/Screens/ScanSetup.py:387 -#: ../lib/python/Screens/ScanSetup.py:388 -#: ../lib/python/Screens/ScanSetup.py:389 -#: ../lib/python/Screens/ScanSetup.py:390 -#: ../lib/python/Screens/ScanSetup.py:391 ../lib/python/Screens/Ci.py:24 +#: ../lib/python/Screens/ScanSetup.py:387 ../lib/python/Screens/Ci.py:22 msgid "Auto" msgstr "otmoatik" -#: ../lib/python/Screens/ScanSetup.py:702 ../data/ +#: ../lib/python/Screens/ScanSetup.py:602 ../data/ msgid "Automatic Scan" msgstr "Otomatik Arama" -#: ../lib/python/Components/NimManager.py:760 +#: ../lib/python/Components/NimManager.py:765 msgid "B" msgstr "B" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BA" msgstr "BA" -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Components/NimManager.py:747 msgid "BB" msgstr "BB" @@ -226,11 +236,11 @@ msgstr "Yedekleme Konumu" msgid "Backup Mode" msgstr "Yedekleme Şekli" -#: ../lib/python/Components/NimManager.py:738 +#: ../lib/python/Components/NimManager.py:742 msgid "Band" msgstr "bant" -#: ../lib/python/Screens/ScanSetup.py:247 +#: ../lib/python/Screens/ScanSetup.py:244 msgid "Bandwidth" msgstr "bant genişliği" @@ -238,7 +248,7 @@ msgstr "bant genişliği" msgid "Bus: " msgstr "Yol: " -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "C-Band" msgstr "C-Band" @@ -246,18 +256,14 @@ msgstr "C-Band" msgid "CF Drive" msgstr "CF Sürücü" -#: ../lib/python/Screens/ChannelSelection.py:735 +#: ../lib/python/Screens/ChannelSelection.py:760 msgid "Cable" msgstr "Kablo" -#: ../lib/python/Screens/Satconfig.py:69 -msgid "Cable provider" -msgstr "Kablo Kuruluşu" - -#: ../lib/python/Screens/Setup.py:87 ../lib/python/Screens/TimerEntry.py:25 +#: ../lib/python/Screens/Setup.py:85 ../lib/python/Screens/TimerEntry.py:25 #: ../lib/python/Screens/TimeDateInput.py:16 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:75 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:165 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 msgid "Cancel" msgstr "Vazgeç" @@ -265,11 +271,32 @@ msgstr "Vazgeç" msgid "Capacity: " msgstr "Kapasite:" -#: ../lib/python/Screens/TimerEntry.py:197 ../data/ +#: ../lib/python/Components/Language.py:17 +msgid "Catalan" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:146 +#: ../lib/python/Screens/ParentalControlSetup.py:22 ../data/ +msgid "Change pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:79 +msgid "Change service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:76 +msgid "Change service pins" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:70 +msgid "Change setup pin" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:173 ../data/ msgid "Channel" msgstr "Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:150 +#: ../lib/python/Screens/InfoBarGenerics.py:147 msgid "Channel:" msgstr "Kanal:" @@ -277,54 +304,51 @@ msgstr "Kanal:" msgid "Choose source" msgstr "Kaynağı Seç" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Classic" -msgstr "Klasik" - -#: ../lib/python/Screens/TimerEdit.py:29 +#: ../lib/python/Screens/TimerEdit.py:27 msgid "Cleanup" msgstr "Temizlik" -#: ../lib/python/Screens/ScanSetup.py:213 -#: ../lib/python/Screens/ScanSetup.py:218 -#: ../lib/python/Screens/ScanSetup.py:240 -#: ../lib/python/Screens/ScanSetup.py:255 -#: ../lib/python/Screens/ScanSetup.py:690 +#: ../lib/python/Screens/ScanSetup.py:210 +#: ../lib/python/Screens/ScanSetup.py:215 +#: ../lib/python/Screens/ScanSetup.py:237 +#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:588 msgid "Clear before scan" msgstr "önceki aramayı Temizle" -#: ../lib/python/Screens/TimerEntry.py:346 +#: ../lib/python/Screens/TimerEntry.py:309 msgid "Clear log" msgstr "Logu Temizle" -#: ../lib/python/Screens/ScanSetup.py:248 +#: ../lib/python/Screens/ScanSetup.py:245 msgid "Code rate high" msgstr "Şifreleme düzeyi Yüksek" -#: ../lib/python/Screens/ScanSetup.py:249 +#: ../lib/python/Screens/ScanSetup.py:246 msgid "Code rate low" msgstr "Şifreleme Düzeyi Düşük" -#: ../lib/python/Screens/Satconfig.py:130 -#: ../lib/python/Screens/Satconfig.py:132 +#: ../lib/python/Screens/Satconfig.py:118 +#: ../lib/python/Screens/Satconfig.py:120 msgid "Command order" msgstr "Komut Düzenlemek" -#: ../lib/python/Screens/Satconfig.py:126 +#: ../lib/python/Screens/Satconfig.py:114 msgid "Committed DiSEqC command" msgstr "Bağlıolan DiSEqC Emri" -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 +#: ../lib/python/Components/NimManager.py:789 msgid "Complete" msgstr "Tamam" -#: ../lib/python/Screens/Satconfig.py:49 -#: ../lib/python/Screens/Satconfig.py:155 ../data/ +#: ../lib/python/Screens/Satconfig.py:47 +#: ../lib/python/Screens/Satconfig.py:143 ../data/ msgid "Configuration Mode" msgstr "Yapılandırma Şekli" -#: ../lib/python/Screens/TimerEdit.py:205 +#: ../lib/python/Screens/TimerEdit.py:208 msgid "Conflicting timer" msgstr "Çakışan Zaman" @@ -332,31 +356,27 @@ msgstr "Çakışan Zaman" msgid "Current version:" msgstr "Kullanılan Versiyon:" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S" msgstr "DVB-S" -#: ../lib/python/Screens/ScanSetup.py:363 +#: ../lib/python/Screens/ScanSetup.py:359 msgid "DVB-S2" msgstr "DVB-S2" -#: ../lib/python/Components/Language.py:17 +#: ../lib/python/Components/Language.py:18 msgid "Danish" msgstr "Çanak" -#: ../lib/python/Screens/TimeDateInput.py:54 +#: ../lib/python/Screens/TimeDateInput.py:40 msgid "Date" msgstr "Tarih" -#: ../lib/python/Components/SetupDevices.py:21 -msgid "Default" -msgstr "Varsayılan" - -#: ../lib/python/Screens/TimerEdit.py:26 +#: ../lib/python/Screens/TimerEdit.py:24 msgid "Delete" msgstr "Silme" -#: ../lib/python/Screens/TimerEntry.py:343 +#: ../lib/python/Screens/TimerEntry.py:306 msgid "Delete entry" msgstr "Girdileri Sil" @@ -364,7 +384,7 @@ msgstr "Girdileri Sil" msgid "Delete failed!" msgstr "Silme Başarısız oldu!" -#: ../lib/python/Screens/TimerEntry.py:151 +#: ../lib/python/Screens/TimerEntry.py:126 msgid "Description" msgstr "Tarifi" @@ -376,42 +396,38 @@ msgstr "Bulunan HDD:" msgid "Detected NIMs:" msgstr "Bulunan NIMs:" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:697 msgid "DiSEqC A/B" msgstr "DiSEqC A/B" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:698 msgid "DiSEqC A/B/C/D" msgstr "DiSEqC A/B/C/D" -#: ../lib/python/Screens/Satconfig.py:53 +#: ../lib/python/Screens/Satconfig.py:51 msgid "DiSEqC Mode" msgstr "DiSEqC Şekli" -#: ../lib/python/Screens/Satconfig.py:122 +#: ../lib/python/Screens/Satconfig.py:110 msgid "DiSEqC mode" msgstr "DiSEqC Şekli" -#: ../lib/python/Screens/Satconfig.py:134 +#: ../lib/python/Screens/Satconfig.py:122 msgid "DiSEqC repeats" msgstr "DiSEqC Tekrarlayıcı" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:83 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/TimerEdit.py:81 msgid "Disable" msgstr "Devredışı Bırak" -#: ../lib/python/Screens/InfoBarGenerics.py:1045 +#: ../lib/python/Screens/InfoBarGenerics.py:1165 msgid "Disable Picture in Picture" msgstr "Resim İçinde Resmi devredışı Bırak" +#: ../lib/python/Screens/InfoBarGenerics.py:1122 +msgid "Disable subtitles" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:102 msgid "" "Do you really want to REMOVE\n" @@ -447,7 +463,7 @@ msgstr "" "Şimdi Yedek Almak İstermisiniz?\n" "O Zaman OK, Ve Bekle!" -#: ../lib/python/Screens/InfoBarGenerics.py:1493 +#: ../lib/python/Screens/InfoBarGenerics.py:1609 msgid "Do you want to resume this playback?" msgstr "" @@ -472,11 +488,11 @@ msgstr "İndirilebilir yeni plugins" msgid "Downloading plugin information. Please wait..." msgstr "Plugin İndiriliyor Lütfen Bekleyin..." -#: ../lib/python/Components/Language.py:18 +#: ../lib/python/Components/Language.py:19 msgid "Dutch" msgstr "Almanca" -#: ../lib/python/Screens/ChannelSelection.py:743 +#: ../lib/python/Screens/ChannelSelection.py:768 msgid "E" msgstr "E" @@ -485,48 +501,48 @@ msgstr "E" msgid "ERROR - failed to scan (%s)!" msgstr "HATA - Tarama Başarısız (%s)!" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "East" msgstr "Doğu" -#: ../lib/python/Screens/ScanSetup.py:222 -#: ../lib/python/Screens/TimerEdit.py:81 ../lib/python/Components/Lcd.py:31 -#: ../lib/python/Components/SetupDevices.py:38 -#: ../lib/python/Components/SetupDevices.py:39 -#: ../lib/python/Components/SetupDevices.py:43 -#: ../lib/python/Components/SetupDevices.py:44 -#: ../lib/python/Components/SetupDevices.py:45 -#: ../lib/python/Components/SetupDevices.py:46 -#: ../lib/python/Components/SetupDevices.py:47 +#: ../lib/python/Screens/ParentalControlSetup.py:82 +msgid "Edit services list" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:79 msgid "Enable" msgstr "Devreye Al" -#: ../lib/python/Screens/Satconfig.py:74 +#: ../lib/python/Screens/Satconfig.py:72 msgid "Enable 5V for active antenna" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:188 +#: ../lib/python/Screens/ParentalControlSetup.py:64 +msgid "Enable parental control" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:164 msgid "End" msgstr "Son" -#: ../lib/python/Screens/TimerEntry.py:192 +#: ../lib/python/Screens/TimerEntry.py:168 msgid "EndTime" msgstr "Bitiş Zamanı" #: ../lib/python/Screens/LanguageSelection.py:53 -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:14 msgid "English" msgstr "İngilizce" -#: ../lib/python/Screens/InfoBarGenerics.py:342 +#: ../lib/python/Screens/InfoBarGenerics.py:339 msgid "Enter main menu..." msgstr "" -#: ../lib/python/Components/NimManager.py:683 -msgid "Equal to Socket A" -msgstr "Soket A Eşitle" +#: ../lib/python/Screens/ChannelSelection.py:146 +msgid "Enter the service pin" +msgstr "" #: ../lib/python/Screens/Console.py:41 msgid "Execution Progress:" @@ -536,44 +552,44 @@ msgstr "Uygulama İlerliyor:" msgid "Execution finished!!" msgstr "Uygulama Bitti!!" -#: ../lib/python/Screens/ScanSetup.py:205 -#: ../lib/python/Screens/ScanSetup.py:207 -#: ../lib/python/Screens/ScanSetup.py:237 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:405 +#: ../lib/python/Screens/ScanSetup.py:202 +#: ../lib/python/Screens/ScanSetup.py:204 +#: ../lib/python/Screens/ScanSetup.py:234 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 msgid "FEC" msgstr "FEC" -#: ../lib/python/Screens/Satconfig.py:127 +#: ../lib/python/Screens/Satconfig.py:115 msgid "Fast DiSEqC" msgstr "Hızlı DiSEqC" -#: ../lib/python/Screens/ChannelSelection.py:477 +#: ../lib/python/Screens/ChannelSelection.py:500 msgid "Favourites" msgstr "Favori" -#: ../lib/python/Components/Language.py:19 +#: ../lib/python/Components/Language.py:20 msgid "Finnish" msgstr "Bitiş" -#: ../lib/python/Components/Language.py:20 +#: ../lib/python/Components/Language.py:21 msgid "French" msgstr "Fransızca" -#: ../lib/python/Screens/ScanSetup.py:200 -#: ../lib/python/Screens/ScanSetup.py:233 -#: ../lib/python/Screens/ScanSetup.py:244 -#: ../lib/python/Screens/TimerEntry.py:160 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 +#: ../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/Plugins/SystemPlugins/PositionerSetup/plugin.py:400 msgid "Frequency" msgstr "Frekans" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Fri" msgstr "Fri" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:174 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:149 msgid "Friday" msgstr "Cuma" @@ -586,7 +602,7 @@ msgstr "Ön İşlemci: %d" msgid "Function not yet implemented" msgstr "İşlev Yerine getir" -#: ../lib/python/Screens/NetworkSetup.py:45 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:32 ../data/ msgid "Gateway" msgstr "Ağ geçidi" @@ -594,7 +610,7 @@ msgstr "Ağ geçidi" msgid "Genre:" msgstr "Tür:" -#: ../lib/python/Components/SetupDevices.py:24 +#: ../lib/python/Components/SetupDevices.py:15 #: ../lib/python/Components/Language.py:15 msgid "German" msgstr "Alman" @@ -603,16 +619,16 @@ msgstr "Alman" msgid "Getting plugin information. Please wait..." msgstr "Plugin Bilgisi Hazırlanıypor Lütfen Bekleyin...." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:134 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:192 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:191 msgid "Goto 0" msgstr "0 Git" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:189 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 msgid "Goto position" msgstr "Pozisyona Git" -#: ../lib/python/Screens/ScanSetup.py:252 +#: ../lib/python/Screens/ScanSetup.py:249 msgid "Guard interval mode" msgstr "Aralık Modunu Koru" @@ -621,20 +637,20 @@ msgstr "Aralık Modunu Koru" msgid "Harddisk" msgstr "Sabit Sürücü" -#: ../lib/python/Screens/ScanSetup.py:253 +#: ../lib/python/Screens/ScanSetup.py:250 msgid "Hierarchy mode" msgstr "Düzen Modu" -#: ../lib/python/Screens/InfoBarGenerics.py:1190 -#: ../lib/python/Screens/InfoBarGenerics.py:1198 +#: ../lib/python/Screens/InfoBarGenerics.py:1304 +#: ../lib/python/Screens/InfoBarGenerics.py:1312 msgid "How many minutes do you want to record?" msgstr "Kaç dakika kayıt yapmak istersiniz ?" -#: ../lib/python/Screens/NetworkSetup.py:42 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:29 ../data/ msgid "IP Address" msgstr "IP Adresi" -#: ../lib/python/Components/Language.py:21 +#: ../lib/python/Components/Language.py:22 msgid "Icelandic" msgstr "izlanda" @@ -647,11 +663,11 @@ msgid "" "In order to record a timer, the TV was switched to the recording service!\n" msgstr "Zamanlanmış Kayıtları Sıraya Koy,Televizyonda Servisini Kaydet!\n" -#: ../lib/python/Screens/Satconfig.py:151 +#: ../lib/python/Screens/Satconfig.py:139 msgid "Increased voltage" msgstr "Ayrılmış Voltaj" -#: ../lib/python/Screens/Ci.py:313 +#: ../lib/python/Screens/Ci.py:295 msgid "Init" msgstr "İçinde" @@ -663,34 +679,34 @@ msgstr "Başlangıç Ayarları" msgid "Initializing Harddisk..." msgstr "Harddiskiniz Sıfırlanıyor" -#: ../lib/python/Screens/InfoBarGenerics.py:1100 +#: ../lib/python/Screens/InfoBarGenerics.py:1214 msgid "Instant Record..." msgstr "" -#: ../lib/python/Screens/ScanSetup.py:201 -#: ../lib/python/Screens/ScanSetup.py:234 -#: ../lib/python/Screens/ScanSetup.py:246 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 +#: ../lib/python/Screens/ScanSetup.py:198 +#: ../lib/python/Screens/ScanSetup.py:231 +#: ../lib/python/Screens/ScanSetup.py:243 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:401 msgid "Inversion" msgstr "Tersine Dön" -#: ../lib/python/Components/Language.py:22 +#: ../lib/python/Components/Language.py:23 msgid "Italian" msgstr "İtalya" -#: ../lib/python/Screens/Satconfig.py:119 +#: ../lib/python/Screens/Satconfig.py:107 msgid "LNB" msgstr "LNB" -#: ../lib/python/Screens/Satconfig.py:144 +#: ../lib/python/Screens/Satconfig.py:132 msgid "LOF" msgstr "LOF" -#: ../lib/python/Screens/Satconfig.py:148 +#: ../lib/python/Screens/Satconfig.py:136 msgid "LOF/H" msgstr "LOF/H" -#: ../lib/python/Screens/Satconfig.py:147 +#: ../lib/python/Screens/Satconfig.py:135 msgid "LOF/L" msgstr "LOF/L" @@ -698,40 +714,36 @@ msgstr "LOF/L" msgid "Language selection" msgstr "Lisan Seçimi" -#: ../lib/python/Screens/Satconfig.py:28 -#: ../lib/python/Screens/Satconfig.py:138 ../data/ +#: ../lib/python/Screens/Satconfig.py:26 +#: ../lib/python/Screens/Satconfig.py:126 ../data/ msgid "Latitude" msgstr "Latitude" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Left" msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 msgid "Limit east" msgstr "Doğu Limiti" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:183 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 msgid "Limit west" msgstr "Batı Limiti" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:182 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:181 msgid "Limits off" msgstr "Limit Kapalı" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:185 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:184 msgid "Limits on" msgstr "Limit Açık" -#: ../lib/python/Screens/Satconfig.py:26 -#: ../lib/python/Screens/Satconfig.py:136 ../data/ +#: ../lib/python/Screens/Satconfig.py:24 +#: ../lib/python/Screens/Satconfig.py:124 ../data/ msgid "Longitude" msgstr "Longitude" -#: ../lib/python/Components/NimManager.py:684 -msgid "Loopthrough to Socket A" -msgstr "Loopthrough to Socket A" - #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 msgid "Manual transponder" msgstr "El İle Transponder" @@ -740,35 +752,35 @@ msgstr "El İle Transponder" msgid "Model: " msgstr "Model:" -#: ../lib/python/Screens/ScanSetup.py:208 -#: ../lib/python/Screens/ScanSetup.py:236 -#: ../lib/python/Screens/ScanSetup.py:250 +#: ../lib/python/Screens/ScanSetup.py:205 +#: ../lib/python/Screens/ScanSetup.py:233 +#: ../lib/python/Screens/ScanSetup.py:247 msgid "Modulation" msgstr "Modülasyon" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Mon" msgstr "Pazartesi" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "Mon-Fri" msgstr "Pazartesi-Cuma" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:170 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:145 msgid "Monday" msgstr "Pazartesi" -#: ../lib/python/Screens/InfoBarGenerics.py:1046 +#: ../lib/python/Screens/InfoBarGenerics.py:1173 msgid "Move Picture in Picture" msgstr "Resimden Resme hareket Et" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:175 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 msgid "Move east" msgstr "Doğuya Dön" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:171 msgid "Move west" msgstr "Batıya Dön" @@ -780,123 +792,117 @@ msgstr "Film Menüsü" msgid "Multi EPG" msgstr "Çoklu EPG" -#: ../lib/python/Screens/Ci.py:324 +#: ../lib/python/Screens/Ci.py:306 msgid "Multiple service support" msgstr "" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Multisat" msgstr "Çoklu Uydu" -#: ../lib/python/Components/NimManager.py:499 +#: ../lib/python/Components/NimManager.py:480 msgid "N/A" msgstr "N/A Tanımsız" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:486 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:491 msgid "NIM " msgstr "NIM " -#: ../lib/python/Screens/TimerEntry.py:150 +#: ../lib/python/Screens/TimerEntry.py:125 msgid "Name" msgstr "İsim" -#: ../lib/python/Screens/NetworkSetup.py:46 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:33 ../data/ msgid "Nameserver" msgstr "Nameserver" -#: ../lib/python/Screens/NetworkSetup.py:44 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:31 ../data/ msgid "Netmask" msgstr "Alt Ağ Maskesi" -#: ../lib/python/Screens/ScanSetup.py:238 -#: ../lib/python/Screens/ScanSetup.py:245 +#: ../lib/python/Screens/ScanSetup.py:235 +#: ../lib/python/Screens/ScanSetup.py:242 msgid "Network scan" msgstr "Ağ Tarama" -#: ../lib/python/Screens/ChannelSelection.py:727 +#: ../lib/python/Screens/ChannelSelection.py:752 msgid "New" msgstr "Yeni" +#: ../lib/python/Screens/ParentalControlSetup.py:217 +msgid "New pin" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/FrontprocessorUpgrade/plugin.py:33 msgid "New version:" msgstr "Yeni Versiyon:" -#: ../lib/python/Screens/EpgSelection.py:46 +#: ../lib/python/Screens/EpgSelection.py:45 msgid "Next" msgstr "Sonraki" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "No" msgstr "Hayır" -#: ../lib/python/Screens/InfoBarGenerics.py:1210 +#: ../lib/python/Screens/InfoBarGenerics.py:1324 msgid "No HDD found or HDD not initialized!" msgstr "HDD Bulunamadı Veya HDD Yok" -#: ../lib/python/Screens/InfoBarGenerics.py:1143 +#: ../lib/python/Screens/InfoBarGenerics.py:1257 msgid "No event info found, recording indefinitely." msgstr "Hiçbir Bilgi Olay Bulunmadı,Süresiz Olarak Kaydet." -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:503 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:508 msgid "No positioner capable frontend found." msgstr "" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:518 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:523 msgid "No tuner is configured for use with a diseqc positioner!" msgstr "Hiçbir Tuner diseqc pozisyonu için ayarlanmadı !" -#: ../lib/python/Screens/ScanSetup.py:368 -#: ../lib/python/Screens/ScanSetup.py:376 -#: ../lib/python/Screens/ScanSetup.py:391 -#: ../lib/python/Components/NimManager.py:743 +#: ../lib/python/Screens/ScanSetup.py:364 +#: ../lib/python/Screens/ScanSetup.py:372 +#: ../lib/python/Screens/ScanSetup.py:387 #: ../lib/python/Components/NimManager.py:747 -#: ../lib/python/Components/NimManager.py:760 -#: ../lib/python/Components/NimManager.py:761 -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:751 +#: ../lib/python/Components/NimManager.py:765 +#: ../lib/python/Components/NimManager.py:766 +#: ../lib/python/Components/NimManager.py:780 msgid "None" msgstr "Hiçbiri" -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "North" msgstr "Kuzey" -#: ../lib/python/Components/Language.py:23 +#: ../lib/python/Components/Language.py:24 msgid "Norwegian" msgstr "Norveç" -#: ../lib/python/Components/NimManager.py:685 -msgid "Nothing connected" -msgstr "Hiçbirşey Bağlanmadı." - -#: ../lib/python/Screens/ScanSetup.py:568 -#: ../lib/python/Screens/ScanSetup.py:633 +#: ../lib/python/Screens/ScanSetup.py:560 +#: ../lib/python/Screens/ScanSetup.py:668 msgid "" "Nothing to scan!\n" "Please setup your tuner settings before you start a service scan." msgstr "" -#: ../lib/python/Screens/Setup.py:86 ../lib/python/Screens/TimerEntry.py:24 +#: ../lib/python/Screens/Setup.py:84 ../lib/python/Screens/TimerEntry.py:24 #: ../lib/python/Screens/TimeDateInput.py:15 #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:74 msgid "OK" msgstr "OK" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "Off" msgstr "Kapalı" -#: ../lib/python/Components/NimManager.py:738 -#: ../lib/python/Components/NimManager.py:782 +#: ../lib/python/Components/NimManager.py:742 msgid "On" msgstr "Açık" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "One" msgstr "Bir" @@ -908,28 +914,44 @@ msgstr "Çevrimiçi-Yükseltme" msgid "Packet management" msgstr "Paket Yönetimi" -#: ../lib/python/Screens/InfoBar.py:47 +#: ../lib/python/Components/ParentalControl.py:73 ../data/ +msgid "Parental control" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:74 +msgid "Parental control type" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:48 msgid "Play recorded movies..." msgstr "Kayıtdaki Filmleri Oynat..." -#: ../lib/python/Screens/InfoBarGenerics.py:1055 +#: ../lib/python/Screens/InfoBarGenerics.py:1087 msgid "Please choose an extension..." msgstr "Lütfen Bir İlave Seçin..." -#: ../lib/python/Screens/ChannelSelection.py:126 +#: ../lib/python/Screens/ChannelSelection.py:134 msgid "Please enter a name for the new bouquet" msgstr "Lütfen Yani Bukete Bir İsim Verin" -#: ../lib/python/Screens/ChannelSelection.py:160 +#: ../lib/python/Screens/ChannelSelection.py:183 msgid "Please enter a name for the new marker" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:320 +#: ../lib/python/Screens/ParentalControlSetup.py:25 +msgid "Please enter the correct pin code" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:232 +msgid "Please enter the old pin code" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:283 msgid "Please select a subservice to record..." msgstr "Lütfen alt servis kayıtı için seçin" -#: ../lib/python/Screens/InfoBarGenerics.py:1361 -#: ../lib/python/Screens/SubservicesQuickzap.py:90 +#: ../lib/python/Screens/InfoBarGenerics.py:1476 +#: ../lib/python/Screens/SubservicesQuickzap.py:97 msgid "Please select a subservice..." msgstr "Alt Servis Seçin Lütfen..." @@ -944,85 +966,105 @@ msgstr "" msgid "Please wait... Loading list..." msgstr "Liste Yükleniyor... Lütfen Bekleyin..." -#: ../lib/python/Screens/ScanSetup.py:203 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:404 +#: ../lib/python/Screens/ScanSetup.py:200 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 msgid "Polarity" msgstr "Kutupluk" -#: ../lib/python/Components/NimManager.py:737 +#: ../lib/python/Components/NimManager.py:741 msgid "Polarization" msgstr "Poloarizasyon" -#: ../lib/python/Screens/Satconfig.py:15 +#: ../lib/python/Screens/Satconfig.py:13 msgid "Port A" msgstr "Port A" -#: ../lib/python/Screens/Satconfig.py:18 +#: ../lib/python/Screens/Satconfig.py:16 msgid "Port B" msgstr "Port B" -#: ../lib/python/Screens/Satconfig.py:20 +#: ../lib/python/Screens/Satconfig.py:18 msgid "Port C" msgstr "Port C" -#: ../lib/python/Screens/Satconfig.py:21 +#: ../lib/python/Screens/Satconfig.py:19 msgid "Port D" msgstr "Port D" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:699 msgid "Positioner" msgstr "Pozisyoner" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 msgid "Positioner fine movement" msgstr "Pozisyoner İnce Hareket" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:130 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 msgid "Positioner movement" msgstr "Pozisyoneri Hareket Ettir" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:133 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 msgid "Positioner storage" msgstr "Pozisyoneri Hafızaya Al" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:421 -msgid "Predefined satellite" -msgstr "Tanımlanmış Uydular" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:422 +msgid "Predefined transponder" +msgstr "" -#: ../lib/python/Screens/NetworkSetup.py:35 +#: ../lib/python/Screens/NetworkSetup.py:22 msgid "Press OK to activate the settings." msgstr "Ayarları Etkinleştimek için OK Basın" -#: ../lib/python/Screens/ScanSetup.py:703 +#: ../lib/python/Screens/ScanSetup.py:603 msgid "Press OK to scan" msgstr "Ok Bas Ve Tarama yap" -#: ../lib/python/Screens/ScanSetup.py:160 +#: ../lib/python/Screens/ScanSetup.py:158 msgid "Press OK to start the scan" msgstr "Ok Tuşuna Bas Aramayı Başlat" -#: ../lib/python/Screens/EpgSelection.py:45 +#: ../lib/python/Screens/EpgSelection.py:44 msgid "Prev" msgstr "Önceki" -#: ../lib/python/Screens/ChannelSelection.py:476 -#: ../lib/python/Screens/ChannelSelection.py:618 +#: ../lib/python/Screens/ParentalControlSetup.py:72 +msgid "Protect services" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:68 +msgid "Protect setup" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:499 +#: ../lib/python/Screens/ChannelSelection.py:643 msgid "Provider" msgstr "Yayıncı" -#: ../lib/python/Screens/ChannelSelection.py:725 +#: ../lib/python/Screens/ChannelSelection.py:750 msgid "Providers" msgstr "Yayıncılar" -#: ../lib/python/Screens/InfoBarGenerics.py:1357 +#: ../lib/python/Components/NimManager.py:789 +msgid "Quick" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1472 msgid "Quickzap" msgstr "" -#: ../lib/python/Screens/TimerEdit.py:107 +#: ../lib/python/Screens/Setup.py:145 +msgid "Really close without saving settings?" +msgstr "" + +#: ../lib/python/Screens/TimerEdit.py:105 msgid "Really delete done timers?" msgstr "Zamanlamayı silmekte eminmisin ?" -#: ../lib/python/Screens/SubservicesQuickzap.py:101 +#: ../lib/python/Screens/TimerEdit.py:113 +msgid "Really delete this timer?" +msgstr "" + +#: ../lib/python/Screens/SubservicesQuickzap.py:108 msgid "Really exit the subservices quickzap?" msgstr "" @@ -1030,6 +1072,14 @@ msgstr "" msgid "Recording" msgstr "Kaydetme" +#: ../lib/python/Screens/ParentalControlSetup.py:218 +msgid "Reenter new pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:81 +msgid "Remember service pin" +msgstr "" + #: ../lib/python/Screens/PluginBrowser.py:20 msgid "Remove Plugins" msgstr "Plugins Sil" @@ -1038,88 +1088,88 @@ msgstr "Plugins Sil" msgid "Remove plugins" msgstr "Plugins Sil" -#: ../lib/python/Screens/TimerEntry.py:154 +#: ../lib/python/Screens/TimerEntry.py:129 msgid "Repeat Type" msgstr "Tekrarlanan Tür" -#: ../lib/python/Screens/MediaPlayer.py:347 +#: ../lib/python/Screens/MediaPlayer.py:389 msgid "Replace current playlist" msgstr "" -#: ../lib/python/Screens/Ci.py:312 +#: ../lib/python/Screens/Ci.py:294 msgid "Reset" msgstr "Yeniden Başlat" #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:77 -#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:166 +#: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:167 msgid "Restore" msgstr "Geri Yükle" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Right" msgstr "" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sat" msgstr "Uydu" -#: ../lib/python/Screens/ScanSetup.py:199 -#: ../lib/python/Screens/ScanSetup.py:212 -#: ../lib/python/Screens/Satconfig.py:13 ../lib/python/Screens/Satconfig.py:63 -#: ../lib/python/Screens/Satconfig.py:157 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:398 +#: ../lib/python/Screens/ScanSetup.py:196 +#: ../lib/python/Screens/ScanSetup.py:209 +#: ../lib/python/Screens/Satconfig.py:11 ../lib/python/Screens/Satconfig.py:61 +#: ../lib/python/Screens/Satconfig.py:145 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:397 msgid "Satellite" msgstr "Uydu" -#: ../lib/python/Screens/ChannelSelection.py:475 -#: ../lib/python/Screens/ChannelSelection.py:620 +#: ../lib/python/Screens/ChannelSelection.py:498 +#: ../lib/python/Screens/ChannelSelection.py:645 msgid "Satellites" msgstr "Uydular" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:175 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:150 msgid "Saturday" msgstr "Cumartesi" -#: ../lib/python/Screens/ScanSetup.py:695 -#: ../lib/python/Screens/ScanSetup.py:699 +#: ../lib/python/Screens/ScanSetup.py:594 +#: ../lib/python/Screens/ScanSetup.py:599 msgid "Scan NIM" msgstr "NIM Ara" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:174 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 msgid "Search east" msgstr "Doğuyu Raraştır" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:173 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:172 msgid "Search west" msgstr "Batıyı Araştır" -#: ../lib/python/Components/NimManager.py:686 -msgid "Secondary cable from motorized LNB" -msgstr "İkinci kablo LBN den motorize" - -#: ../lib/python/Screens/InfoBarGenerics.py:1276 +#: ../lib/python/Screens/InfoBarGenerics.py:1390 msgid "Select audio mode" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1265 +#: ../lib/python/Screens/InfoBarGenerics.py:1379 msgid "Select audio track" msgstr "Ses İzlerini Seç" -#: ../lib/python/Screens/TimerEntry.py:237 +#: ../lib/python/Screens/TimerEntry.py:204 msgid "Select channel to record from" msgstr "Seçili Kanalı Kaydet" -#: ../lib/python/Screens/Satconfig.py:128 +#: ../lib/python/Screens/Satconfig.py:116 msgid "Sequence repeat" msgstr "Sırayı Tekrarla" -#: ../lib/python/Screens/ChannelSelection.py:729 +#: ../lib/python/Screens/Satconfig.py:67 +msgid "Service scan type needed" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:754 msgid "Services" msgstr "Servis" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:132 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:131 msgid "Set limits" msgstr "Limit Sabitle" @@ -1127,11 +1177,15 @@ msgstr "Limit Sabitle" msgid "Settings" msgstr "Ayarlar" -#: ../lib/python/Screens/InfoBar.py:48 +#: ../lib/python/Screens/ParentalControlSetup.py:197 +msgid "Show services beginning with" +msgstr "" + +#: ../lib/python/Screens/InfoBar.py:49 msgid "Show the radio player..." msgstr "Radyo Playeri Göster" -#: ../lib/python/Screens/InfoBar.py:49 +#: ../lib/python/Screens/InfoBar.py:50 msgid "Show the tv player..." msgstr "" @@ -1143,12 +1197,7 @@ msgstr "Benzer" msgid "Similar broadcasts:" msgstr "Aynı yayınlamak" -#: ../lib/python/Components/NimManager.py:680 -#: ../lib/python/Components/NimManager.py:687 -msgid "Simple" -msgstr "Sade" - -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:695 msgid "Single" msgstr "Tek" @@ -1156,21 +1205,21 @@ msgstr "Tek" msgid "Single EPG" msgstr "Tekli EPG" -#: ../lib/python/Screens/ScanSetup.py:343 +#: ../lib/python/Screens/ScanSetup.py:339 msgid "Single satellite" msgstr "Tek Uydu" -#: ../lib/python/Screens/ScanSetup.py:343 -#: ../lib/python/Screens/ScanSetup.py:344 -#: ../lib/python/Screens/ScanSetup.py:345 +#: ../lib/python/Screens/ScanSetup.py:339 +#: ../lib/python/Screens/ScanSetup.py:340 +#: ../lib/python/Screens/ScanSetup.py:341 msgid "Single transponder" msgstr "Tek Transponder" -#: ../lib/python/Components/NimManager.py:715 +#: ../lib/python/Components/NimManager.py:717 msgid "Slot " msgstr "Yuva" -#: ../lib/python/Components/NimManager.py:568 +#: ../lib/python/Components/NimManager.py:549 msgid "Socket " msgstr "Soket" @@ -1184,24 +1233,24 @@ msgstr "" "\n" "Lütfen Seçin." -#: ../lib/python/Components/NimManager.py:711 -#: ../lib/python/Components/NimManager.py:772 +#: ../lib/python/Components/NimManager.py:713 +#: ../lib/python/Components/NimManager.py:784 msgid "South" msgstr "Güney" -#: ../lib/python/Components/Language.py:24 +#: ../lib/python/Components/Language.py:25 msgid "Spanish" msgstr "İspanyolca" -#: ../lib/python/Screens/TimerEntry.py:182 +#: ../lib/python/Screens/TimerEntry.py:157 msgid "Start" msgstr "Başla" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "Start recording?" msgstr "Kaydı Başlat" -#: ../lib/python/Screens/TimerEntry.py:185 +#: ../lib/python/Screens/TimerEntry.py:160 msgid "StartTime" msgstr "Başlama Zamanı" @@ -1209,108 +1258,122 @@ msgstr "Başlama Zamanı" msgid "Step " msgstr "Adım" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:179 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 msgid "Step east" msgstr "Doğu Adımı" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:178 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:177 msgid "Step west" msgstr "Batı Adımı" -#: ../lib/python/Screens/InfoBarGenerics.py:1264 +#: ../lib/python/Screens/InfoBarGenerics.py:1378 msgid "Stereo" msgstr "" +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:166 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:167 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:168 #: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:169 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:170 msgid "Stop" msgstr "Dur" -#: ../lib/python/Screens/InfoBarGenerics.py:955 +#: ../lib/python/Screens/InfoBarGenerics.py:957 msgid "Stop Timeshift?" msgstr "Zamandonduru . Durdur?" -#: ../lib/python/Screens/InfoBar.py:111 +#: ../lib/python/Screens/InfoBar.py:113 msgid "Stop playing this movie?" msgstr "Bu Filmi Oynamasını Durdur?" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:188 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:187 msgid "Store position" msgstr "Pozisyonu Sakla" -#: ../lib/python/Screens/Satconfig.py:116 +#: ../lib/python/Screens/Satconfig.py:104 msgid "Stored position" msgstr "Pozisyonu saklandı" -#: ../lib/python/Screens/InfoBarGenerics.py:1295 +#: ../lib/python/Screens/InfoBarGenerics.py:1409 msgid "Subservice list..." msgstr "Alt Servis Listesi..." -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Sun" msgstr "güneş" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:176 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:151 msgid "Sunday" msgstr "Pazar" -#: ../lib/python/Screens/InfoBarGenerics.py:1047 -msgid "Swap services" -msgstr "Servis değiştir" +#: ../lib/python/Screens/InfoBarGenerics.py:1170 +msgid "Swap Services" +msgstr "" -#: ../lib/python/Components/Language.py:25 +#: ../lib/python/Components/Language.py:26 msgid "Swedish" msgstr "İsveç" -#: ../lib/python/Screens/InfoBarGenerics.py:1300 +#: ../lib/python/Screens/InfoBarGenerics.py:1414 msgid "Switch to next subservice" msgstr "Alt Servisi Değiştir" -#: ../lib/python/Screens/InfoBarGenerics.py:1301 +#: ../lib/python/Screens/InfoBarGenerics.py:1415 msgid "Switch to previous subservice" msgstr "Önceki Alt Servisle Değiştir" -#: ../lib/python/Screens/ScanSetup.py:202 -#: ../lib/python/Screens/ScanSetup.py:235 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:403 +#: ../lib/python/Screens/ScanSetup.py:199 +#: ../lib/python/Screens/ScanSetup.py:232 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:402 msgid "Symbol Rate" msgstr "Sembol Oranı" -#: ../lib/python/Screens/ChannelSelection.py:737 +#: ../lib/python/Screens/ChannelSelection.py:762 msgid "Terrestrial" msgstr "Karasal" -#: ../lib/python/Screens/Satconfig.py:73 +#: ../lib/python/Screens/Satconfig.py:71 msgid "Terrestrial provider" msgstr "Karasal Yayıncı" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Screens/ParentalControlSetup.py:251 +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 +msgid "The pin code you entered is wrong." +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:253 +msgid "The pin codes you entered are different." +msgstr "" + +#: ../lib/python/Components/NimManager.py:780 msgid "Three" msgstr "Üç" -#: ../lib/python/Screens/Satconfig.py:149 +#: ../lib/python/Screens/Satconfig.py:137 msgid "Threshold" msgstr "Başlangıç" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Thu" msgstr "Perşembe" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:173 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:148 msgid "Thursday" msgstr "Perşembe" -#: ../lib/python/Screens/TimeDateInput.py:55 +#: ../lib/python/Screens/TimeDateInput.py:41 msgid "Time" msgstr "Zaman" -#: ../lib/python/Screens/TimerEntry.py:152 +#: ../lib/python/Screens/TimerEntry.py:127 msgid "Timer Type" msgstr "Zaman Yaz" @@ -1318,67 +1381,67 @@ msgstr "Zaman Yaz" msgid "Title:" msgstr "Ünvan:" -#: ../lib/python/Screens/EpgSelection.py:246 +#: ../lib/python/Screens/EpgSelection.py:245 #: ../lib/python/Tools/FuzzyDate.py:10 msgid "Today" msgstr "Bu Gün" -#: ../lib/python/Screens/Satconfig.py:111 +#: ../lib/python/Screens/Satconfig.py:99 msgid "Tone mode" msgstr "Ton Modu" -#: ../lib/python/Screens/Satconfig.py:125 +#: ../lib/python/Screens/Satconfig.py:113 msgid "Toneburst" msgstr "Toneburst" -#: ../lib/python/Components/NimManager.py:702 +#: ../lib/python/Components/NimManager.py:696 msgid "Toneburst A/B" msgstr "Ton İle Ayırma A/B" -#: ../lib/python/Screens/ScanSetup.py:251 +#: ../lib/python/Screens/ScanSetup.py:248 msgid "Transmission mode" msgstr "İletim Şekli" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:407 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:406 msgid "Transponder" msgstr "Transponder" -#: ../lib/python/Screens/ScanSetup.py:197 +#: ../lib/python/Screens/ScanSetup.py:194 msgid "Transpondertype" msgstr "Transponder Yaz" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Tue" msgstr "Salı" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:171 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:146 msgid "Tuesday" msgstr "Salı" -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:129 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:161 -#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:396 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:128 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:160 +#: ../lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py:395 msgid "Tune" msgstr "İnce Ayar" -#: ../lib/python/Screens/ScanSetup.py:178 +#: ../lib/python/Screens/ScanSetup.py:176 #: ../lib/python/Components/ServiceScan.py:75 msgid "Tuner" msgstr "Tüner" -#: ../lib/python/Components/Language.py:26 +#: ../lib/python/Components/Language.py:27 msgid "Turkish" msgstr "" -#: ../lib/python/Components/NimManager.py:768 +#: ../lib/python/Components/NimManager.py:780 msgid "Two" msgstr "İki" -#: ../lib/python/Screens/ScanSetup.py:184 -#: ../lib/python/Screens/ScanSetup.py:187 -#: ../lib/python/Screens/ScanSetup.py:190 +#: ../lib/python/Screens/ScanSetup.py:182 +#: ../lib/python/Screens/ScanSetup.py:185 +#: ../lib/python/Screens/ScanSetup.py:188 msgid "Type of scan" msgstr "Cinsinden Arama" @@ -1400,11 +1463,11 @@ msgstr "" "Lütfen İlgili Ref Kullanıcı Kitabına Bakın.\n" "Hata: " -#: ../lib/python/Screens/Satconfig.py:133 +#: ../lib/python/Screens/Satconfig.py:121 msgid "Uncommitted DiSEqC command" msgstr "Bağımsız DiSEqC Emri" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "Universal LNB" msgstr "Beynelminel LNB" @@ -1416,46 +1479,46 @@ msgstr "Yükseltme tamamlandı.Sonuç burada :" msgid "Updating... Please wait... This can take some minutes..." msgstr "Yükseltiliyor...Lütfen Bekleyiniz..Bu birkaç dakika sürebilir.." -#: ../lib/python/Screens/NetworkSetup.py:40 ../data/ +#: ../lib/python/Screens/NetworkSetup.py:27 ../data/ msgid "Use DHCP" msgstr "DHCP Kullan" -#: ../lib/python/Screens/Satconfig.py:113 +#: ../lib/python/Screens/Satconfig.py:101 msgid "Use usals for this sat" msgstr "Kullanıcı İçin Bir USALS Uydu" -#: ../lib/python/Components/NimManager.py:754 +#: ../lib/python/Components/NimManager.py:759 msgid "User defined" msgstr "Kullanıcı Tanımlı" -#: ../lib/python/Screens/InfoBarGenerics.py:1631 +#: ../lib/python/Screens/InfoBarGenerics.py:1747 msgid "View teletext..." msgstr "" -#: ../lib/python/Screens/Satconfig.py:110 +#: ../lib/python/Screens/Satconfig.py:98 msgid "Voltage mode" msgstr "Voltaj Modu" -#: ../lib/python/Screens/ChannelSelection.py:741 +#: ../lib/python/Screens/ChannelSelection.py:766 msgid "W" msgstr "W" -#: ../lib/python/Screens/EpgSelection.py:235 +#: ../lib/python/Screens/EpgSelection.py:234 #: ../lib/python/Components/TimerList.py:34 msgid "Wed" msgstr "Evlen" -#: ../lib/python/Screens/TimerEntry.py:112 -#: ../lib/python/Screens/TimerEntry.py:172 +#: ../lib/python/Screens/TimerEntry.py:96 +#: ../lib/python/Screens/TimerEntry.py:147 msgid "Wednesday" msgstr "Çarşamba" -#: ../lib/python/Screens/TimerEntry.py:167 +#: ../lib/python/Screens/TimerEntry.py:142 msgid "Weekday" msgstr "Gün" -#: ../lib/python/Components/NimManager.py:709 -#: ../lib/python/Components/NimManager.py:770 +#: ../lib/python/Components/NimManager.py:711 +#: ../lib/python/Components/NimManager.py:782 msgid "West" msgstr "Batı" @@ -1463,11 +1526,7 @@ msgstr "Batı" msgid "Year:" msgstr "Yıl:" -#: ../lib/python/Screens/Ci.py:24 ../lib/python/Components/NimManager.py:739 -#: ../lib/python/Components/NimManager.py:759 -#: ../lib/python/Components/NimManager.py:763 -#: ../lib/python/Components/NimManager.py:764 -#: ../lib/python/Components/NimManager.py:773 +#: ../lib/python/Screens/Ci.py:22 msgid "Yes" msgstr "Evet" @@ -1475,7 +1534,7 @@ msgstr "Evet" msgid "You cannot delete this!" msgstr "Siz bunu silemezsiniz !" -#: ../lib/python/Screens/MediaPlayer.py:348 +#: ../lib/python/Screens/MediaPlayer.py:390 msgid "You selected a playlist" msgstr "" @@ -1487,23 +1546,23 @@ msgstr "" "Sizin ön işlemci firmware yükseltilmek zorundadır.\n" "Yükseltmesi başlatmak için OK basınız." -#: ../lib/python/Screens/ChannelSelection.py:357 +#: ../lib/python/Screens/ChannelSelection.py:380 msgid "[bouquet edit]" msgstr "[bouquet Düzenle]" -#: ../lib/python/Screens/ChannelSelection.py:359 +#: ../lib/python/Screens/ChannelSelection.py:382 msgid "[favourite edit]" msgstr "[favorileri Düzenle]" -#: ../lib/python/Screens/ChannelSelection.py:442 +#: ../lib/python/Screens/ChannelSelection.py:465 msgid "[move mode]" msgstr "[Taşıma Kipi]" -#: ../lib/python/Screens/ChannelSelection.py:111 +#: ../lib/python/Screens/ChannelSelection.py:119 msgid "abort bouquet edit" msgstr "Durdur bouquet Düzenle" -#: ../lib/python/Screens/ChannelSelection.py:114 +#: ../lib/python/Screens/ChannelSelection.py:122 msgid "abort favourites edit" msgstr "Favori Düzenleme Hakkında" @@ -1511,45 +1570,54 @@ msgstr "Favori Düzenleme Hakkında" msgid "about to start" msgstr "Hakkında yı Başlat" -#: ../lib/python/Screens/ChannelSelection.py:93 +#: ../lib/python/Screens/ChannelSelection.py:101 msgid "add bouquet" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:297 +#: ../lib/python/Screens/MediaPlayer.py:337 msgid "add directory to playlist" msgstr "Yeni Klasör ve Çalma Lsitesi...." -#: ../lib/python/Screens/MediaPlayer.py:299 +#: ../lib/python/Screens/MediaPlayer.py:339 msgid "add file to playlist" msgstr "Yeni Dosya ve Çalmalistesi" -#: ../lib/python/Screens/ChannelSelection.py:99 +#: ../lib/python/Screens/ChannelSelection.py:107 msgid "add marker" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (enter recording duration)" msgstr "Yeni Kayıt (Kaydederken Süre Gir)" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (indefinitely)" msgstr "Kayıt ekle ( Süresiz olarak )" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "add recording (stop after current event)" msgstr "Kayıt Ekle ( Durdur Şuanki Kayıdı )" -#: ../lib/python/Screens/ChannelSelection.py:79 +#: ../lib/python/Screens/ChannelSelection.py:87 msgid "add service to bouquet" msgstr "Yeni Servis veya Buket Ekle" -#: ../lib/python/Screens/ChannelSelection.py:81 +#: ../lib/python/Screens/ChannelSelection.py:89 msgid "add service to favourites" msgstr "Ekle Servis E Favorileri" +#: ../lib/python/Screens/ChannelSelection.py:83 +msgid "add to parental protection" +msgstr "" + +#: ../lib/python/Components/NimManager.py:664 +#: ../lib/python/Components/NimManager.py:675 +msgid "advanced" +msgstr "" + #: ../lib/python/Plugins/SystemPlugins/ConfigurationBackup/plugin.py:208 msgid "" "are you sure you want to restore\n" @@ -1559,39 +1627,47 @@ msgstr "" "Yedeklemeyi Takip Edin:\n" #: ../lib/python/Screens/MovieSelection.py:24 -#: ../lib/python/Screens/ChannelSelection.py:116 +#: ../lib/python/Screens/ChannelSelection.py:124 msgid "back" msgstr "Geri" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "blacklist" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "change recording (duration)" msgstr "Kaydederek Değiştir (Süre)" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular left" msgstr "Dairevi Kalan" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "circular right" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:303 +#: ../lib/python/Screens/MediaPlayer.py:343 msgid "clear playlist" msgstr "Çalma Listesini Temizle" -#: ../lib/python/Screens/InfoBarGenerics.py:583 +#: ../lib/python/Components/ParentalControl.py:13 +msgid "complex" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:580 msgid "continue" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:85 +#: ../lib/python/Screens/ChannelSelection.py:93 msgid "copy to favourites" msgstr "Favoriyi Kopyala" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "daily" msgstr "Günlük" -#: ../lib/python/Screens/MediaPlayer.py:302 +#: ../lib/python/Screens/MediaPlayer.py:342 msgid "delete" msgstr "Sil" @@ -1599,16 +1675,16 @@ msgstr "Sil" msgid "delete..." msgstr "Sil...." -#: ../lib/python/Screens/ChannelSelection.py:107 +#: ../lib/python/Screens/ChannelSelection.py:115 msgid "disable move mode" msgstr "Taşıma Modunu Kapat" -#: ../lib/python/Screens/TimerEntry.py:99 -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/TimerEntry.py:83 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "do nothing" msgstr "Hiçbirşey Yapma" -#: ../lib/python/Screens/InfoBarGenerics.py:1216 +#: ../lib/python/Screens/InfoBarGenerics.py:1330 msgid "don't record" msgstr "Kayıt Bitti" @@ -1616,30 +1692,34 @@ msgstr "Kayıt Bitti" msgid "done!" msgstr "Bitti!" -#: ../lib/python/Components/NimManager.py:570 +#: ../lib/python/Components/NimManager.py:551 msgid "empty/unknown" msgstr "Boş/Tanımsız" -#: ../lib/python/Screens/ChannelSelection.py:103 +#: ../lib/python/Screens/ChannelSelection.py:111 msgid "enable bouquet edit" msgstr "Etkinleştir Buket Düzenlemeyi" -#: ../lib/python/Screens/ChannelSelection.py:105 +#: ../lib/python/Screens/ChannelSelection.py:113 msgid "enable favourite edit" msgstr "Etkinleştir Favori Düzenlemeyi" -#: ../lib/python/Screens/ChannelSelection.py:100 +#: ../lib/python/Screens/ChannelSelection.py:108 msgid "enable move mode" msgstr "Taşıma Listesini Aç" -#: ../lib/python/Screens/ChannelSelection.py:110 +#: ../lib/python/Screens/ChannelSelection.py:118 msgid "end bouquet edit" msgstr "Buket Düzenleme Son" -#: ../lib/python/Screens/ChannelSelection.py:113 +#: ../lib/python/Screens/ChannelSelection.py:121 msgid "end favourites edit" msgstr "Favori Düzenleme Bitti" +#: ../lib/python/Components/NimManager.py:670 +msgid "equal to Socket A" +msgstr "" + #: ../lib/python/Components/DiskInfo.py:30 msgid "free diskspace" msgstr "Kullanılabilir Disk Alanı" @@ -1648,31 +1728,31 @@ msgstr "Kullanılabilir Disk Alanı" msgid "full /etc directory" msgstr "Tüm /etc Klasörü" -#: ../lib/python/Screens/TimerEntry.py:99 +#: ../lib/python/Screens/TimerEntry.py:83 msgid "go to deep standby" msgstr "Derin Uyku Ya git" -#: ../lib/python/Screens/InfoBar.py:62 +#: ../lib/python/Screens/InfoBar.py:64 msgid "hear radio..." msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:304 +#: ../lib/python/Screens/MediaPlayer.py:344 msgid "hide player" msgstr "Oynatıcıyı Gizle" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "horizontal" msgstr "Yatay" -#: ../lib/python/Screens/Ci.py:318 ../lib/python/Screens/Ci.py:340 +#: ../lib/python/Screens/Ci.py:300 ../lib/python/Screens/Ci.py:322 msgid "init module" msgstr "init Modul" -#: ../lib/python/Screens/InfoBar.py:96 +#: ../lib/python/Screens/InfoBar.py:98 msgid "leave movie player..." msgstr "Film Oynatıcıdan Çık" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "left" msgstr "" @@ -1681,7 +1761,11 @@ msgstr "" msgid "list" msgstr "Liste" -#: ../lib/python/Components/NimManager.py:707 +#: ../lib/python/Components/NimManager.py:671 +msgid "loopthrough to socket A" +msgstr "" + +#: ../lib/python/Components/NimManager.py:708 msgid "manual" msgstr "El İle" @@ -1690,24 +1774,20 @@ msgstr "El İle" msgid "mins" msgstr "Dakikalar" -#: ../lib/python/Screens/InfoBarGenerics.py:260 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "never" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:257 msgid "next channel" msgstr "Sonraki Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:262 +#: ../lib/python/Screens/InfoBarGenerics.py:259 msgid "next channel in history" msgstr "Bundansonra Gelecek Kanal İçeriği" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "no" msgstr "Hayır" @@ -1715,7 +1795,7 @@ msgstr "Hayır" msgid "no HDD found" msgstr "HDD Bulunamadı" -#: ../lib/python/Screens/Ci.py:316 ../lib/python/Screens/Ci.py:338 +#: ../lib/python/Screens/Ci.py:298 ../lib/python/Screens/Ci.py:320 msgid "no module found" msgstr "Hiç Modül Bulunamadı" @@ -1723,19 +1803,23 @@ msgstr "Hiç Modül Bulunamadı" msgid "none" msgstr "Hiçbiri" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Components/NimManager.py:672 +msgid "nothing connected" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "off" msgstr "Kapalı" -#: ../lib/python/Screens/ScanSetup.py:365 -#: ../lib/python/Screens/ScanSetup.py:374 -#: ../lib/python/Screens/ScanSetup.py:382 +#: ../lib/python/Screens/ScanSetup.py:361 +#: ../lib/python/Screens/ScanSetup.py:370 +#: ../lib/python/Screens/ScanSetup.py:378 msgid "on" msgstr "Açık" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "once" msgstr "Vaktiyle" @@ -1743,15 +1827,15 @@ msgstr "Vaktiyle" msgid "only /etc/enigma2 directory" msgstr "Yanlız /etc/enigma2 Dizini" -#: ../lib/python/Screens/InfoBarGenerics.py:263 +#: ../lib/python/Screens/InfoBarGenerics.py:260 msgid "open servicelist" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:258 +#: ../lib/python/Screens/InfoBarGenerics.py:255 msgid "open servicelist(down)" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:257 +#: ../lib/python/Screens/InfoBarGenerics.py:254 msgid "open servicelist(up)" msgstr "" @@ -1759,23 +1843,23 @@ msgstr "" msgid "pass" msgstr "Şifre" -#: ../lib/python/Screens/InfoBarGenerics.py:582 +#: ../lib/python/Screens/InfoBarGenerics.py:579 msgid "pause" msgstr "" -#: ../lib/python/Screens/Ci.py:86 +#: ../lib/python/Screens/Ci.py:82 msgid "please press OK when ready" msgstr "Hazırsanız OK Basın" -#: ../lib/python/Screens/InfoBarGenerics.py:259 +#: ../lib/python/Screens/InfoBarGenerics.py:256 msgid "previous channel" msgstr "Önceki Kanal" -#: ../lib/python/Screens/InfoBarGenerics.py:261 +#: ../lib/python/Screens/InfoBarGenerics.py:258 msgid "previous channel in history" msgstr "Önceki Kanal Geçmişi" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "record" msgstr "Kayıt" @@ -1783,24 +1867,28 @@ msgstr "Kayıt" msgid "recording..." msgstr "Kaydetme.." -#: ../lib/python/Screens/ChannelSelection.py:87 +#: ../lib/python/Screens/ChannelSelection.py:95 msgid "remove all new found flags" msgstr "Yeni Bulunan İşaretlerini Sil" -#: ../lib/python/Screens/ChannelSelection.py:89 -#: ../lib/python/Screens/ChannelSelection.py:94 +#: ../lib/python/Screens/ChannelSelection.py:97 +#: ../lib/python/Screens/ChannelSelection.py:102 msgid "remove entry" msgstr "" -#: ../lib/python/Screens/ChannelSelection.py:91 +#: ../lib/python/Screens/ChannelSelection.py:85 +msgid "remove from parental protection" +msgstr "" + +#: ../lib/python/Screens/ChannelSelection.py:99 msgid "remove new found flag" msgstr "" -#: ../lib/python/Screens/TimerEntry.py:100 +#: ../lib/python/Screens/TimerEntry.py:84 msgid "repeated" msgstr "yinelenen" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "right" msgstr "" @@ -1842,43 +1930,61 @@ msgstr "" msgid "scan state" msgstr "Arama Durumu" -#: ../lib/python/Screens/InfoBarGenerics.py:394 +#: ../lib/python/Components/NimManager.py:673 +msgid "second cable of motorized LNB" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:96 +msgid "service pin" +msgstr "" + +#: ../lib/python/Screens/ParentalControlSetup.py:98 +msgid "setup pin" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:391 msgid "show EPG..." msgstr "Detaylı EPG" -#: ../lib/python/Screens/InfoBarGenerics.py:356 +#: ../lib/python/Screens/InfoBarGenerics.py:353 msgid "show event details" msgstr "Olay Detayını Göster" -#: ../lib/python/Screens/InfoBarGenerics.py:588 -msgid "skip backward" +#: ../lib/python/Components/ParentalControl.py:13 +#: ../lib/python/Components/NimManager.py:663 +#: ../lib/python/Components/NimManager.py:674 +msgid "simple" msgstr "" #: ../lib/python/Screens/InfoBarGenerics.py:585 +msgid "skip backward" +msgstr "" + +#: ../lib/python/Screens/InfoBarGenerics.py:582 msgid "skip forward" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:897 +#: ../lib/python/Screens/InfoBarGenerics.py:899 msgid "start timeshift" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1275 +#: ../lib/python/Screens/InfoBarGenerics.py:1389 msgid "stereo" msgstr "" -#: ../lib/python/Screens/InfoBarGenerics.py:1214 +#: ../lib/python/Screens/InfoBarGenerics.py:1328 msgid "stop recording" msgstr "Kaydı Durdur" -#: ../lib/python/Screens/InfoBarGenerics.py:898 +#: ../lib/python/Screens/InfoBarGenerics.py:900 msgid "stop timeshift" msgstr "" -#: ../lib/python/Screens/MediaPlayer.py:301 +#: ../lib/python/Screens/MediaPlayer.py:341 msgid "switch to filelist" msgstr "Dosya Listesini Değiştir" -#: ../lib/python/Screens/MediaPlayer.py:295 +#: ../lib/python/Screens/MediaPlayer.py:335 msgid "switch to playlist" msgstr "Çalma Listesini Değiştir" @@ -1890,53 +1996,61 @@ msgstr "Metin" msgid "this recording" msgstr "Bunu Kaydet" +#: ../lib/python/Components/ParentalControl.py:73 +msgid "this service is protected by a parental control pin" +msgstr "" + #: ../lib/python/Screens/EventView.py:80 msgid "unknown service" msgstr "Bilinmeyen Servis" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Components/ParentalControl.py:14 +msgid "until restart" +msgstr "" + +#: ../lib/python/Screens/TimerEntry.py:88 msgid "user defined" msgstr "Kullanıcı Tanımlı" -#: ../lib/python/Screens/ScanSetup.py:367 +#: ../lib/python/Screens/ScanSetup.py:363 msgid "vertical" msgstr "Düşey" -#: ../lib/python/Screens/InfoBarGenerics.py:1031 +#: ../lib/python/Screens/InfoBarGenerics.py:1035 msgid "view extensions..." msgstr "" -#: ../lib/python/Screens/InfoBar.py:61 +#: ../lib/python/Screens/InfoBar.py:63 msgid "view recordings..." msgstr "" +#: ../lib/python/Screens/Ci.py:167 +msgid "wait for ci..." +msgstr "" + #: ../lib/python/Components/TimerList.py:57 msgid "waiting" msgstr "Bekleyin" -#: ../lib/python/Screens/TimerEntry.py:104 +#: ../lib/python/Screens/TimerEntry.py:88 msgid "weekly" msgstr "Haftalık" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:378 -#: ../lib/python/Screens/ScanSetup.py:392 -#: ../lib/python/Screens/ScanSetup.py:397 -#: ../lib/python/Screens/ScanSetup.py:689 -#: ../lib/python/Screens/ScanSetup.py:691 -#: ../lib/python/Screens/ScanSetup.py:698 -#: ../lib/python/Screens/TimerEntry.py:116 -#: ../lib/python/Components/Network.py:145 -#: ../lib/python/Components/RecordingConfig.py:8 +#: ../lib/python/Components/ParentalControl.py:17 +msgid "whitelist" +msgstr "" + +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes" msgstr "Evet" -#: ../lib/python/Screens/ScanSetup.py:346 -#: ../lib/python/Screens/ScanSetup.py:689 +#: ../lib/python/Screens/ScanSetup.py:342 +#: ../lib/python/Screens/ScanSetup.py:587 msgid "yes (keep feeds)" msgstr "Evet (Bunları Sakla)" -#: ../lib/python/Screens/TimerEntry.py:98 +#: ../lib/python/Screens/TimerEntry.py:82 msgid "zap" msgstr "Canlılık" @@ -2002,6 +2116,10 @@ msgstr "Servis Arama" msgid "DiSEqC" msgstr "DiSEqC" +#: ../data/ +msgid "Main menu" +msgstr "Ana Menü" + #: ../data/ msgid "TV System" msgstr "TV Sistemi" @@ -2075,8 +2193,8 @@ msgid "#bab329" msgstr "#bab329" #: ../data/ -msgid "Sat / Dish Setup" -msgstr "Uydu /Çanak Ayarlayıcı" +msgid "Startwizard" +msgstr "" #: ../data/ msgid "#ffffff" @@ -2197,8 +2315,8 @@ msgid "Standby / Restart" msgstr "Bekleme / yenidenbaşlat" #: ../data/ -msgid "Main menu" -msgstr "Ana Menü" +msgid "Standby" +msgstr "Uyku Modu" #: ../data/ msgid "EPG Selection" @@ -2221,8 +2339,8 @@ msgid "Brightness" msgstr "Parlaklık" #: ../data/ -msgid "Standby" -msgstr "Uyku Modu" +msgid "Parental control services Editor" +msgstr "" #: ../data/ msgid "Yes, do another manual scan now" @@ -2280,6 +2398,10 @@ msgstr "İndirilebilir plugins" msgid "Subservices" msgstr "Alt servisler" +#: ../data/ +msgid "Parental control setup" +msgstr "" + #: ../data/ msgid "Timezone" msgstr "Zaman Bölgesi" @@ -2542,6 +2664,10 @@ msgstr "" msgid "#389416" msgstr "#389416" +#: ../data/ +msgid "Pin code needed" +msgstr "" + #: ../data/ msgid "VCR scart" msgstr "VCR scart" @@ -2610,6 +2736,10 @@ msgstr "Saat/Tarih Girin" msgid "AGC:" msgstr "AGC:" +#: ../data/ +msgid "Sat / Dish Setup" +msgstr "Uydu /Çanak Ayarlayıcı" + #: ../data/ msgid "What do you want to scan?" msgstr "Neyi Taramak İstiyorsunuz!" @@ -2650,6 +2780,36 @@ msgstr "Ortam Oynatıcı" msgid "Do you want to do another manual service scan?" msgstr "Başka Elle Servs Araması İstermisiniz" +#~ msgid "Cable provider" +#~ msgstr "Kablo Kuruluşu" + +#~ msgid "Classic" +#~ msgstr "Klasik" + +#~ msgid "Default" +#~ msgstr "Varsayılan" + +#~ msgid "Equal to Socket A" +#~ msgstr "Soket A Eşitle" + +#~ msgid "Loopthrough to Socket A" +#~ msgstr "Loopthrough to Socket A" + +#~ msgid "Nothing connected" +#~ msgstr "Hiçbirşey Bağlanmadı." + +#~ msgid "Predefined satellite" +#~ msgstr "Tanımlanmış Uydular" + +#~ msgid "Secondary cable from motorized LNB" +#~ msgstr "İkinci kablo LBN den motorize" + +#~ msgid "Simple" +#~ msgstr "Sade" + +#~ msgid "Swap services" +#~ msgstr "Servis değiştir" + #~ msgid "add bouquet..." #~ msgstr "Yeni bouquet..."