diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index c20e25fc3fd..00d4548c0fd 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -54,7 +54,7 @@ def __init__(self, session, showSteps=True, showStepSlider=True, showList=True, self.showStepSlider = showStepSlider self.showList = showList self.showConfig = showConfig - self.setTitle(_("Welcome Wizard")) + self.setTitle(_("Setup Wizard")) self.wizard = {} parser = make_parser() wizardHandler = self.parseWizard(self.wizard) @@ -119,31 +119,31 @@ def __init__(self, session, showSteps=True, showStepSlider=True, showList=True, # "9": (self.keyNumberGlobal, _("DIGIT button")), # "0": (self.keyNumberGlobal, _("DIGIT button")), # "gotAsciiCode": (self.keyGotAscii, _("ASCII button")) - # }, prio=-1, description=_("Wizard Actions")) + # }, prio=-1, description=_("Setup Wizard Actions")) self["wizardActions"] = HelpableActionMap(self, ["WizardActions", "InputAsciiActions"], { - "ok": (self.keySelect, _("Proceed to the next step")), + "ok": (self.keySelect, _("Move to the next step")), "back": (self.keyStepBack, _("Go back to the previous step")), - "gotAsciiCode": (self.keyGotAscii, _("Enter text via an attached keyboard")) - }, prio=0, description=_("Wizard Actions")) + "gotAsciiCode": (self.keyGotAscii, _("Enter text using a physical keyboard")) + }, prio=0, description=_("Setup Wizard Actions")) self["debugActions"] = HelpableActionMap(self, ["WizardActions"], { # "info": (self.dumpDictionary, _("Dump the current wizard dictionary into the logs (Debug mode only)")), - "info": (self.exit, _("Immediately exit the wizard (Debug mode only)")), - }, prio=0, description=_("Wizard Actions")) + "info": (self.exit, _("Quit the setup wizard instantly (Debug Mode only)")), + }, prio=0, description=_("Setup Wizard Actions")) self["debugActions"].setEnabled(self.debugMode) self["leftRightActions"] = HelpableActionMap(self, ["NavigationActions"], { - "left": (self.keyLeft, _("View the previous item in a list")), - "right": (self.keyRight, _("View the next item in a list")) - }, prio=0, description=_("Wizard Actions")) + "left": (self.keyLeft, _("Go to the previous item in a list")), + "right": (self.keyRight, _("Go to the next item in a list")) + }, prio=0, description=_("Setup Wizard Actions")) self["leftRightActions"].setEnabled(False) self["upDownActions"] = HelpableActionMap(self, ["NavigationActions"], { "up": (self.keyUp, _("Move up a line")), "down": (self.keyDown, _("Move down a line")) - }, prio=0, description=_("Wizard Actions")) + }, prio=0, description=_("Setup Wizard Actions")) self["upDownActions"].setEnabled(False) self["deleteActions"] = HelpableActionMap(self, ["SetupActions"], { "deleteBackward": (self.keyBackspace, _("Delete the character to the left of the cursor")), "deleteForward": (self.keyDelete, _("Delete the character under the cursor")) - }, prio=0, description=_("Wizard Actions")) + }, prio=0, description=_("Setup Wizard Actions")) self["deleteActions"].setEnabled(False) self["numberActions"] = HelpableNumberActionMap(self, ["NumberActions"], { "1": (self.keyNumberGlobal, _("Select a menu item")), @@ -156,27 +156,27 @@ def __init__(self, session, showSteps=True, showStepSlider=True, showList=True, "8": (self.keyNumberGlobal, _("Select a menu item")), "9": (self.keyNumberGlobal, _("Select a menu item")), "0": (self.keyNumberGlobal, _("Select a menu item")) - }, prio=0, description=_("Wizard Actions")) + }, prio=0, description=_("Setup Wizard Actions")) self["numberActions"].setEnabled(False) self["redAction"] = HelpableActionMap(self, ["ColorActions"], { - "red": (self.keyRed, _("Process RED button action")), - }, prio=0, description=_("Wizard Actions")) + "red": (self.keyRed, _("Process RED button action")), # TODO: l10n + }, prio=0, description=_("Setup Wizard Actions")) self["redAction"].setEnabled(False) self["greenAction"] = HelpableActionMap(self, ["ColorActions"], { - "green": (self.keyGreen, _("Process GREEN button action")), - }, prio=0, description=_("Wizard Actions")) + "green": (self.keyGreen, _("Process GREEN button action")), # TODO: l10n + }, prio=0, description=_("Setup Wizard Actions")) self["greenAction"].setEnabled(False) self["yellowAction"] = HelpableActionMap(self, ["ColorActions"], { - "yellow": (self.keyYellow, _("Process YELLOW button action")), - }, prio=0, description=_("Wizard Actions")) + "yellow": (self.keyYellow, _("Process YELLOW button action")), # TODO: l10n + }, prio=0, description=_("Setup Wizard Actions")) self["yellowAction"].setEnabled(False) self["blueAction"] = HelpableActionMap(self, ["ColorActions"], { - "blue": (self.keyBlue, _("Process BLUE button action")), - }, prio=0, description=_("Wizard Actions")) + "blue": (self.keyBlue, _("Process BLUE button action")), # TODO: l10n + }, prio=0, description=_("Setup Wizard Actions")) self["blueAction"].setEnabled(False) self["VirtualKB"] = HelpableActionMap(self, ["VirtualKeyboardActions"], { - "showVirtualKeyboard": (self.keyText, _("Open the VirtualKeyBoard for text entry")) - }, prio=0, description=_("Wizard Actions")) + "showVirtualKeyboard": (self.keyText, _("Show an on-screen keyboard to enter text with")) + }, prio=0, description=_("Setup Wizard Actions")) self["VirtualKB"].setEnabled(False) self.screenInstance = None self.disableKeys = False @@ -391,7 +391,7 @@ def keyStepBack(self): self.currStep = self.stepHistory[-2] self.stepHistory = self.stepHistory[:-2] else: - self.session.openWithCallback(self.exitWizardQuestion, MessageBox, (_("Are you sure you want to exit this wizard?")), windowTitle=self.getTitle()) + self.session.openWithCallback(self.exitWizardQuestion, MessageBox, (_("Are you sure you want to quit the setup wizard?")), windowTitle=self.getTitle()) if self.currStep < 1: self.currStep = 1 print("[Wizard] The current step is %d and the current step history is %s." % (self.currStep, self.stepHistory)) diff --git a/lib/python/Screens/WizardOSDCalibration.py b/lib/python/Screens/WizardOSDCalibration.py index ab4c59b27c8..88550db00ba 100644 --- a/lib/python/Screens/WizardOSDCalibration.py +++ b/lib/python/Screens/WizardOSDCalibration.py @@ -14,7 +14,7 @@ def __init__(self, session, interface=None): ShowRemoteControl.__init__(self) self.skinName = "StartWizard" self.session = session - Screen.setTitle(self, _("Welcome...")) + Screen.setTitle(self, _("Welcome...")) # TODO: l10n (is this shown anywhere?) self.Console = Console() self["wizard"] = Pixmap() self["HelpWindow"] = Pixmap() diff --git a/lib/python/Tools/WeatherID.py b/lib/python/Tools/WeatherID.py index 58b848bead1..e23660b47a3 100644 --- a/lib/python/Tools/WeatherID.py +++ b/lib/python/Tools/WeatherID.py @@ -1,6 +1,7 @@ #-*- coding: UTF-8 -*- # source: https://code.google.com/p/python-weather-api/ +# TODO: redundant file? - https://stackoverflow.com/questions/54046823/yql-query-service-replacement-now-that-yahoo-shut-it-down from json import loads from re import search diff --git a/po/ar.po b/po/ar.po index a3ff477ad91..b9e1f46d3e2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -2663,7 +2663,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "هل أنت متأكد أنك تريد الخروج من هذه النافذه ؟" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7604,7 +7604,7 @@ msgstr "أدخل الرمز السري" msgid "Enter pin code" msgstr "أدخل الرقم السري" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9838,7 +9838,7 @@ msgstr "" msgid "Immediate shut down" msgstr "إغلاق فورى" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13058,7 +13058,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14370,7 +14370,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22447,13 +22447,13 @@ msgstr "مشاهدة نصوص الأخبار..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -22692,7 +22692,7 @@ msgstr "" msgid "Weekly" msgstr "اسبوعى" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23062,7 +23062,7 @@ msgstr "دون المنبثقة" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/bg.po b/po/bg.po index 8bde7b614ae..7764d55188c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2422,7 +2422,7 @@ msgstr "Сигурен ли си че искаш да изтриеш този д msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Сигурен ли си че искаш да излезеш от този помощник?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7183,7 +7183,7 @@ msgstr "Въведете устойчив ПИН-код" msgid "Enter pin code" msgstr "Въведете пин код" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9351,7 +9351,7 @@ msgstr "Съветник за имидж" msgid "Immediate shut down" msgstr "Незабавно изключване" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12366,7 +12366,7 @@ msgstr "Отворете браузъра на плъгини" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13611,7 +13611,7 @@ msgstr "Вероятните причини могат да бъдат" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21331,13 +21331,13 @@ msgstr "Преглед на телетекст..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21559,7 +21559,7 @@ msgstr "" msgid "Weekly" msgstr "Седмично" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21924,7 +21924,7 @@ msgstr "Без изскачащ" msgid "Without query" msgstr "без Запитване" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/ca.po b/po/ca.po index 0f49be5ddd2..7bcbc173214 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2648,7 +2648,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Esteu segur que voleu sortir d’aquest assistent?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7703,7 +7703,7 @@ msgstr "Introduïu codi PIN persistent" msgid "Enter pin code" msgstr "Introduïu codi PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10006,7 +10006,7 @@ msgstr "" msgid "Immediate shut down" msgstr "" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13296,7 +13296,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14657,7 +14657,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22853,13 +22853,13 @@ msgstr "Veure teletext..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23103,7 +23103,7 @@ msgstr "" msgid "Weekly" msgstr "setmanalment" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23473,7 +23473,7 @@ msgstr "Sense aparició" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/cs.po b/po/cs.po index 32e2635c40d..17a29f00704 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2452,7 +2452,7 @@ msgstr "Opravdu chcete smazat tuto zprávu:\n" msgid "Are you sure you want to delete this?" msgstr "Opravdu to chcete smazat?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Opravdu chcete ukončit tohoto průvodce?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7229,7 +7229,7 @@ msgstr "Zadejte trvalý PIN kód" msgid "Enter pin code" msgstr "Zadejte pin kód" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Zadávání textu pomocí připojené klávesnice" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9402,7 +9402,7 @@ msgstr "Průvodce obnovením" msgid "Immediate shut down" msgstr "Vypnout přijímač" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Okamžitě ukončit průvodce (pouze režim ladění)" msgid "Immediately restart selected devices." @@ -12422,7 +12422,7 @@ msgstr "Prohlížeč pluginů" msgid "Open the Plugin Browser settings screen" msgstr "Otevřít obrazovku nastavení prohlížeče pluginů" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Otevřete VirtualKeyBoard a zadejte text" msgid "Open the context menu" @@ -13672,7 +13672,7 @@ msgstr "Pravděpodobný problém je" msgid "Proc model" msgstr "Model Proc" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Pokračujte dalším krokem" msgid "Proceed with the update" @@ -21476,13 +21476,13 @@ msgstr "Teletext..." msgid "View the archive contents" msgstr "Zobrazit obsah archivu" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Zobrazení další položky v seznamu" msgid "View the package contents" msgstr "Zobrazit obsah balíčku" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Zobrazit předchozí položku v seznamu" msgid "View video CD..." @@ -21704,7 +21704,7 @@ msgstr "Víkendy" msgid "Weekly" msgstr "Týdně" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Vítejte Průvodce" #, python-format @@ -22075,7 +22075,7 @@ msgstr "Bez dialogu" msgid "Without query" msgstr "Bez dotazu" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Akce průvodce" msgid "Wolof" diff --git a/po/da.po b/po/da.po index b5fe78d963c..ef30f428b40 100644 --- a/po/da.po +++ b/po/da.po @@ -2422,7 +2422,7 @@ msgstr "Vil du virkelig slette alle denne log:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Er du sikker på, at du vil afslutte denne assistent ?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7189,7 +7189,7 @@ msgstr "Indtast permanent PIN kode" msgid "Enter pin code" msgstr "Indtast PIN kode" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9374,7 +9374,7 @@ msgstr "Image assistent" msgid "Immediate shut down" msgstr "Sluk straks" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12452,7 +12452,7 @@ msgstr "Åben Plugin browseren" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13708,7 +13708,7 @@ msgstr "Sandsynlig årsag kan være" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21496,13 +21496,13 @@ msgstr "Se Tekst-TV..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21725,7 +21725,7 @@ msgstr "" msgid "Weekly" msgstr "Ugentlig" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22091,7 +22091,7 @@ msgstr "Uden Pop-op" msgid "Without query" msgstr "Uden forespørgsel" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/de.po b/po/de.po index 2b4272ff95d..96314d75283 100644 --- a/po/de.po +++ b/po/de.po @@ -2561,7 +2561,7 @@ msgid "Are you sure you want to delete this?" msgstr "Wirklich dies löschen?" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Diesen Assistenten verlassen?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7608,7 +7608,7 @@ msgstr "PIN-Code eingeben" msgid "Enter pin code" msgstr "PIN-Code eingeben" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Texteingabe über eine angeschlossene Tastatur" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9887,7 +9887,7 @@ msgstr "Einstellungen wiederherstellen" msgid "Immediate shut down" msgstr "Direkt herunterfahren" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Sofortiges Beenden des Assistenten (nur im Debug-Modus)" msgid "Immediately restart selected devices." @@ -13149,7 +13149,7 @@ msgstr "Plugin-Manager öffnen" msgid "Open the Plugin Browser settings screen" msgstr "Plugin-Manager Einstellungen" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Die virtuelle Tastatur zur Texteingabe öffnen" msgid "Open the context menu" @@ -14520,7 +14520,7 @@ msgstr "Mögliche Ursachen könnten sein" msgid "Proc model" msgstr "Treibermodell" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Weiter zum nächsten Schritt" msgid "Proceed with the update" @@ -22828,13 +22828,13 @@ msgstr "Videotext anzeigen" msgid "View the archive contents" msgstr "Inhalt des Archives anzeigen" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Anzeigen des nächsten Elements in einer Liste" msgid "View the package contents" msgstr "Inhalt des Paketes anzeigen" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Anzeigen des vorherigen Elements in einer Liste" msgid "View video CD..." @@ -23078,7 +23078,7 @@ msgstr "Wochenende" msgid "Weekly" msgstr "Wöchentlich" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Willkommensassistent" #, python-format @@ -23471,7 +23471,7 @@ msgstr "Ohne Meldung" msgid "Without query" msgstr "Ohne Rückfrage" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Assistentenaktionen" msgid "Wolof" diff --git a/po/el.po b/po/el.po index a45a3ab67dd..7d5f18b0655 100644 --- a/po/el.po +++ b/po/el.po @@ -2421,7 +2421,7 @@ msgstr "Θέλετε σίγουρα να διαγραφεί αυτή η κατα msgid "Are you sure you want to delete this?" msgstr "Θέλετε σίγουρα να διαγραφεί αυτό;" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Θέλετε σίγουρα να γίνει έξοδος από αυτόν τον οδηγό;" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7194,7 +7194,7 @@ msgstr "Εισαγωγή μόνιμου κωδικού PIN" msgid "Enter pin code" msgstr "Εισαγωγή κωδικού pin" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Εισάγετε κείμενο μέσω ενός συνδεδεμένου πληκτρολογίου" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9367,7 +9367,7 @@ msgstr "Οδηγός Image" msgid "Immediate shut down" msgstr "Άμεσος τερματισμός" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Άμεση έξοδος από τον οδηγό (μόνο στη λειτουργία εντοπισμού σφαλμάτων)" msgid "Immediately restart selected devices." @@ -12385,7 +12385,7 @@ msgstr "Άνοιγμα του πλοηγού προσθέτων" msgid "Open the Plugin Browser settings screen" msgstr "Άνοιγμα της οθόνης ρυθμίσεων του πλοηγού προσθέτων" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Άνοιγμα του εικονικού πληκτρολογίου για εισαγωγή κειμένου" msgid "Open the context menu" @@ -13633,7 +13633,7 @@ msgstr "Πιθανές αιτίες μπορεί να είναι" msgid "Proc model" msgstr "Μοντέλο επεξεργαστή" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Προχωρήστε στο επόμενο βήμα" msgid "Proceed with the update" @@ -21433,13 +21433,13 @@ msgstr "Προβολή τηλεκειμένου..." msgid "View the archive contents" msgstr "Προβολή των περιεχομένων του πακέτου" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Προβολή του επόμενου στοιχείου σε μια λίστα" msgid "View the package contents" msgstr "Προβολή των περιεχομένων πακέτου" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Προβολή του προηγούμενου στοιχείου σε μια λίστα" msgid "View video CD..." @@ -21661,7 +21661,7 @@ msgstr "Σαββατοκύριακα" msgid "Weekly" msgstr "Εβδομαδιαία" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Οδηγός καλωσορίσματος" #, python-format @@ -22032,7 +22032,7 @@ msgstr "Χωρίς αναδυόμενο παράθυρο" msgid "Without query" msgstr "Χωρίς ερώτημα" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Ενέργειες οδηγού" msgid "Wolof" diff --git a/po/en.po b/po/en.po index 606c0a73f6d..af911659629 100644 --- a/po/en.po +++ b/po/en.po @@ -2765,7 +2765,7 @@ msgid "" " " msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" diff --git a/po/en_AU.po b/po/en_AU.po index 54e15d7f1a6..e203629a731 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -2403,7 +2403,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7120,7 +7120,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9263,7 +9263,7 @@ msgstr "" msgid "Immediate shut down" msgstr "" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12264,7 +12264,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13500,7 +13500,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21152,13 +21152,13 @@ msgstr "" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21380,7 +21380,7 @@ msgstr "" msgid "Weekly" msgstr "" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21740,7 +21740,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/en_GB.po b/po/en_GB.po index db171cb7f5e..86028751157 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -2410,8 +2410,8 @@ msgstr "Are you sure you want to delete this log:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" -msgstr "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" +msgstr "Are you sure you want to quit the setup wizard?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Are you sure you want to reload the EPG data from:\n" @@ -7131,7 +7131,7 @@ msgstr "" msgid "Enter pin code" msgstr "Enter pin code" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9278,7 +9278,7 @@ msgstr "Initialisation Wizard" msgid "Immediate shut down" msgstr "Immediate shut down" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12287,7 +12287,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13523,7 +13523,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21187,13 +21187,13 @@ msgstr "View teletext..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21415,7 +21415,7 @@ msgstr "" msgid "Weekly" msgstr "Weekly" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21775,7 +21775,7 @@ msgstr "Without pop up" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/enigma2.pot b/po/enigma2.pot index 57909bace01..6ac1049ad3c 100644 --- a/po/enigma2.pot +++ b/po/enigma2.pot @@ -2382,7 +2382,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7076,7 +7076,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9213,7 +9213,7 @@ msgstr "" msgid "Immediate shut down" msgstr "" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12197,7 +12197,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13433,7 +13433,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21047,13 +21047,13 @@ msgstr "" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21275,7 +21275,7 @@ msgstr "" msgid "Weekly" msgstr "" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21635,7 +21635,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/es.po b/po/es.po index 6520464d54d..73726fb6ee1 100644 --- a/po/es.po +++ b/po/es.po @@ -2541,7 +2541,7 @@ msgid "Are you sure you want to delete this?" msgstr "¿Seguro que quiere eliminar esto?" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "¿Seguro que quiere salir de este asistente?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7563,7 +7563,7 @@ msgstr "Por favor, ponga el pin correcto" msgid "Enter pin code" msgstr "Introduce el código pin" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9863,7 +9863,7 @@ msgstr "Asistente de imagen" msgid "Immediate shut down" msgstr "Apagado inmediato" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13102,7 +13102,7 @@ msgstr "Abrir navegador de complementos" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14463,7 +14463,7 @@ msgstr "Las causas probables podrían ser" msgid "Proc model" msgstr "Modelo de Proc" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22810,13 +22810,13 @@ msgstr "Mostrar teletexto…" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23060,7 +23060,7 @@ msgstr "" msgid "Weekly" msgstr "Semanal" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23444,7 +23444,7 @@ msgstr "Sin ventana emergente" msgid "Without query" msgstr "sin consultar" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/et.po b/po/et.po index 3ea3c6b5a24..998dea385da 100644 --- a/po/et.po +++ b/po/et.po @@ -2446,7 +2446,7 @@ msgstr "Kas kustutada see logi:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Kas väljuda seadistusabilisest?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7316,7 +7316,7 @@ msgstr "Sisesta püsiv PIN kood" msgid "Enter pin code" msgstr "Sisesta PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9544,7 +9544,7 @@ msgstr "Püsivara abiline" msgid "Immediate shut down" msgstr "Kohene seiskamine" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12705,7 +12705,7 @@ msgstr "Pluginate menüü" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13999,7 +13999,7 @@ msgstr "Tõenäoliselt on põhjuseks" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21959,13 +21959,13 @@ msgstr "Kuva teletekst" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -22195,7 +22195,7 @@ msgstr "" msgid "Weekly" msgstr "Iga nädal" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22571,7 +22571,7 @@ msgstr "Hüpikaknata" msgid "Without query" msgstr "Päringuta" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/fa.po b/po/fa.po index 131922e570c..2169cfe68e0 100644 --- a/po/fa.po +++ b/po/fa.po @@ -2526,7 +2526,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "آیا مطمئن هستید که میخواهید از این هدایتگر خارج شوید ؟" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7377,7 +7377,7 @@ msgstr "" msgid "Enter pin code" msgstr "رمز را وارد کنید" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9595,7 +9595,7 @@ msgstr "" msgid "Immediate shut down" msgstr "خاموشی فوری" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12732,7 +12732,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14021,7 +14021,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21926,13 +21926,13 @@ msgstr "نمایش تلتکست..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -22163,7 +22163,7 @@ msgstr "" msgid "Weekly" msgstr "هفته ای" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22528,7 +22528,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/fi.po b/po/fi.po index 018533b9aaf..f64e10b14da 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2429,7 +2429,7 @@ msgstr "Haluatko varmasti poistaa tämän lokin:\n" msgid "Are you sure you want to delete this?" msgstr "Haluatko varmasti poistaa tämän?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Haluatko lopettaa avustustoiminnon?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7203,7 +7203,7 @@ msgstr "Syötä katselun PIN koodi" msgid "Enter pin code" msgstr "Syötä PIN koodi" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Kirjoita teksti liitetyn näppäimistön kautta" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9381,7 +9381,7 @@ msgstr "Image Avustaja" msgid "Immediate shut down" msgstr "Sammuta heti" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Poistu välittömästi asennustoiminnosta (vain vianmääritystila)" msgid "Immediately restart selected devices." @@ -12407,7 +12407,7 @@ msgstr "Avaa lisäosien selaus" msgid "Open the Plugin Browser settings screen" msgstr "Avaa lisäsosat asetukset näytölle" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Avaa Virtuaalinen näppäimistö tekstin syöttämistä varten" msgid "Open the context menu" @@ -13655,7 +13655,7 @@ msgstr "Todennäköiset syyt voivat olla" msgid "Proc model" msgstr "Proc malli" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Siirry seuraavaan vaiheeseen" msgid "Proceed with the update" @@ -21478,13 +21478,13 @@ msgstr "Näytä tekstitv" msgid "View the archive contents" msgstr "Näytä arkiston sisältö" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Valitse seuraava kohde listalta" msgid "View the package contents" msgstr "Katso paketin sisältö" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Valitse edellinen kohde listalta" msgid "View video CD..." @@ -21706,7 +21706,7 @@ msgstr "Viikonloppuisin" msgid "Weekly" msgstr "Viikoittain" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Tervetuloa Ohjattuun toimintoon" #, python-format @@ -22077,7 +22077,7 @@ msgstr "Kyllä, älä näytä viestiä" msgid "Without query" msgstr "kysymättä" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Avustajan Toiminnot" msgid "Wolof" diff --git a/po/fr.po b/po/fr.po index 133aa59decf..c0a32ed9af9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2429,7 +2429,7 @@ msgstr "Êtes-vous sûr de vouloir effacer ce log :\n" msgid "Are you sure you want to delete this?" msgstr "Vous êtes sûr de vouloir supprimer ça ?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Êtes-vous sûr de vouloir quitter cet assistant ?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7200,7 +7200,7 @@ msgstr "Saisir le code PIN persistant" msgid "Enter pin code" msgstr "Saisir code PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9373,7 +9373,7 @@ msgstr "Assistant image" msgid "Immediate shut down" msgstr "Extinction immédiate" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12393,7 +12393,7 @@ msgstr "Ouvrir le gestionnaire de plugin" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13639,7 +13639,7 @@ msgstr "Les causes probables pourraient être" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21384,13 +21384,13 @@ msgstr "Afficher télétexte..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21612,7 +21612,7 @@ msgstr "" msgid "Weekly" msgstr "Hebdomadaire" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21977,7 +21977,7 @@ msgstr "Sans le popup" msgid "Without query" msgstr "sans demander" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/fy.po b/po/fy.po index 8a57a914ac2..aad38449615 100644 --- a/po/fy.po +++ b/po/fy.po @@ -2662,7 +2662,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7768,7 +7768,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10108,7 +10108,7 @@ msgstr "" msgid "Immediate shut down" msgstr "direkt útskeakelje" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13469,7 +13469,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14856,7 +14856,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23186,13 +23186,13 @@ msgstr "tiletekst toane..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23434,7 +23434,7 @@ msgstr "" msgid "Weekly" msgstr "wikeliks" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23807,7 +23807,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/he.po b/po/he.po index cf3509c444c..74bda6e1f35 100644 --- a/po/he.po +++ b/po/he.po @@ -2566,7 +2566,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "? האם אתה מעוניין לצאת מהאשף" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7512,7 +7512,7 @@ msgstr "" msgid "Enter pin code" msgstr ":הכנס קוד אבטחה" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9770,7 +9770,7 @@ msgstr "" msgid "Immediate shut down" msgstr "כיבוי מיידי" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13024,7 +13024,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14343,7 +14343,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22468,13 +22468,13 @@ msgstr "" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -22715,7 +22715,7 @@ msgstr "" msgid "Weekly" msgstr "שבועי" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23088,7 +23088,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/hr.po b/po/hr.po index cf493aabb8a..34ca1962029 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2649,7 +2649,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7718,7 +7718,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10043,7 +10043,7 @@ msgstr "" msgid "Immediate shut down" msgstr "odmah isključi" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13373,7 +13373,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14747,7 +14747,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23003,7 +23003,7 @@ msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23245,7 +23245,7 @@ msgstr "" msgid "Weekly" msgstr "tjedno" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23616,7 +23616,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/hu.po b/po/hu.po index 81ea19c5707..1f649ad4e3c 100644 --- a/po/hu.po +++ b/po/hu.po @@ -2464,7 +2464,7 @@ msgstr "Biztos benne, hogy törölné ezt a naplót:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Biztos benne, hogy kilép a Varázslóból?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7245,7 +7245,7 @@ msgstr "Adja meg a tartós PIN-kódot" msgid "Enter pin code" msgstr "Adja meg a PIN-kódot" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9430,7 +9430,7 @@ msgstr "ImageWizard" msgid "Immediate shut down" msgstr "Azonnali kikapcsolás" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12511,7 +12511,7 @@ msgstr "Bővítménykezelő megnyitása" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13765,7 +13765,7 @@ msgstr "Lehetséges okok lehetnek" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21555,13 +21555,13 @@ msgstr "Teletext megtekintése..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21785,7 +21785,7 @@ msgstr "" msgid "Weekly" msgstr "Hetente" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22151,7 +22151,7 @@ msgstr "Figyelmeztetés nélkül" msgid "Without query" msgstr "query nélkül" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/id.po b/po/id.po index 75bf98ce748..4a07635141e 100644 --- a/po/id.po +++ b/po/id.po @@ -2587,7 +2587,7 @@ msgstr "Anda yakin ingin menghapus log ini:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Anda yakin ingin keluar dari wizard ini?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7431,7 +7431,7 @@ msgstr "Enter persistent PIN code" msgid "Enter pin code" msgstr "Enter pin code" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9668,7 +9668,7 @@ msgstr "ImageWizard" msgid "Immediate shut down" msgstr "Immediate shut down" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12786,7 +12786,7 @@ msgstr "Open the Plugin Browser" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14066,7 +14066,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21966,13 +21966,13 @@ msgstr "View teletext..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -22200,7 +22200,7 @@ msgstr "" msgid "Weekly" msgstr "Weekly" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22569,7 +22569,7 @@ msgstr "Without pop up" msgid "Without query" msgstr "Without query" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/is.po b/po/is.po index 6f3409dd7d5..81ef7fa1ce2 100644 --- a/po/is.po +++ b/po/is.po @@ -2638,7 +2638,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Ertu viss um að þú viljir hætta í ráðgjafanum?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7604,7 +7604,7 @@ msgstr "" msgid "Enter pin code" msgstr "Slá inn kóða" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9922,7 +9922,7 @@ msgstr "" msgid "Immediate shut down" msgstr "slökkva strax" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13287,7 +13287,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14663,7 +14663,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22986,13 +22986,13 @@ msgstr "Skoða textavarp..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -23236,7 +23236,7 @@ msgstr "" msgid "Weekly" msgstr "vikulega" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23610,7 +23610,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/it.po b/po/it.po index 4d8bae0cd31..00d19d8fae2 100644 --- a/po/it.po +++ b/po/it.po @@ -2420,7 +2420,7 @@ msgstr "Sei sicuro di voler eliminare questo registro:\n" msgid "Are you sure you want to delete this?" msgstr "Sei sicuro di voler eliminare questo?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Sei sicuro di voler uscire dalla procedura guidata?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7193,7 +7193,7 @@ msgstr "Inserisci codice PIN persistente" msgid "Enter pin code" msgstr "Inserisci codice PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Inserisci testo tramite una tastiera collegata" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9366,7 +9366,7 @@ msgstr "Creazione guidata immagine" msgid "Immediate shut down" msgstr "Spegnimento immediato" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Esci immediatamente dalla procedura guidata (solo modalità debug)" msgid "Immediately restart selected devices." @@ -12384,7 +12384,7 @@ msgstr "Apri elenco plugin" msgid "Open the Plugin Browser settings screen" msgstr "Apri schermata delle impostazioni dell'elenco plugin" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Apri tastiera virtuale per immettere il testo" msgid "Open the context menu" @@ -13632,7 +13632,7 @@ msgstr "Le cause probabili potrebbero essere" msgid "Proc model" msgstr "Modello processore" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Procedi al passaggio successivo" msgid "Proceed with the update" @@ -21432,13 +21432,13 @@ msgstr "Visualizza televideo..." msgid "View the archive contents" msgstr "Visualizza contenuto dell'archivio" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Visualizza elemento successivo in un elenco" msgid "View the package contents" msgstr "Visualizza contenuto del pacchetto" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Visualizza elemento precedente in un elenco" msgid "View video CD..." @@ -21660,7 +21660,7 @@ msgstr "Fine settimana" msgid "Weekly" msgstr "Settimanali" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Procedura guidata di benvenuto" #, python-format @@ -22031,7 +22031,7 @@ msgstr "Senza popup" msgid "Without query" msgstr "senza interrogazione" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Azioni della procedura guidata" msgid "Wolof" diff --git a/po/ku.po b/po/ku.po index 592d834e2d5..eb1701de468 100644 --- a/po/ku.po +++ b/po/ku.po @@ -2560,7 +2560,7 @@ msgstr "" #, fuzzy msgid "Are you sure to remove this entry?" -msgstr "Are you sure you want to exit this wizard?" +msgstr "Are you sure you want to quit the setup wizard?" msgid "Are you sure you want to activate this network configuration?" msgstr "" @@ -2593,12 +2593,12 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" -msgstr "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" +msgstr "Are you sure you want to quit the setup wizard?" #, fuzzy msgid "Are you sure you want to reload the EPG data from:\n" -msgstr "Are you sure you want to exit this wizard?" +msgstr "Are you sure you want to quit the setup wizard?" msgid "Are you sure you want to restart your network interfaces?" msgstr "" @@ -2630,7 +2630,7 @@ msgstr "" #, fuzzy msgid "Are you sure you want to save the EPG Cache to:\n" -msgstr "Are you sure you want to exit this wizard?" +msgstr "Are you sure you want to quit the setup wizard?" msgid "Argentina" msgstr "" @@ -7519,7 +7519,7 @@ msgstr "" msgid "Enter pin code" msgstr "Enter pin code" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9768,7 +9768,7 @@ msgstr "" msgid "Immediate shut down" msgstr "Immediate shut down" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12917,7 +12917,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14211,7 +14211,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22219,13 +22219,13 @@ msgstr "View teletext..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -22456,7 +22456,7 @@ msgstr "" msgid "Weekly" msgstr "weekly" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22825,7 +22825,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/lt.po b/po/lt.po index 4b99b8b042a..7df0efd4ddb 100644 --- a/po/lt.po +++ b/po/lt.po @@ -2467,7 +2467,7 @@ msgstr "Ar tikrai norite pašalinti šį žurnalą:\n" msgid "Are you sure you want to delete this?" msgstr "Ar tikrai norite tai ištrinti?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Ar tikrai norite išjungti šį vedlį?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7243,7 +7243,7 @@ msgstr "Įrašykite pastovų PIN kodą" msgid "Enter pin code" msgstr "Įrašykite pin kodą" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9418,7 +9418,7 @@ msgstr "Atvaizdo vedlys" msgid "Immediate shut down" msgstr "Nedelsiant išjungti" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12435,7 +12435,7 @@ msgstr "Atverti priedų tvarkyklę" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13685,7 +13685,7 @@ msgstr "Tikėtinos priežastys gali būti" msgid "Proc model" msgstr "Proc modelis" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21444,13 +21444,13 @@ msgstr "Peržiūrėti teletekstą..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21672,7 +21672,7 @@ msgstr "" msgid "Weekly" msgstr "Kas savaitę" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22037,7 +22037,7 @@ msgstr "Be Iššokančio teksto" msgid "Without query" msgstr "be užklausos" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/lv.po b/po/lv.po index 5d252d0294c..aae02a3b666 100644 --- a/po/lv.po +++ b/po/lv.po @@ -2666,7 +2666,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7792,7 +7792,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10133,7 +10133,7 @@ msgstr "" msgid "Immediate shut down" msgstr "tūlītēja izslēgšana" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13508,7 +13508,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14894,7 +14894,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23241,13 +23241,13 @@ msgstr "Skatīt teletekstu..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23490,7 +23490,7 @@ msgstr "" msgid "Weekly" msgstr "iknedēļas" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23863,7 +23863,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/nb.po b/po/nb.po index 07c17b4fdc1..471c9267e96 100644 --- a/po/nb.po +++ b/po/nb.po @@ -2395,7 +2395,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Er du sikker på at du vil avslutte denne veiviseren?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7113,7 +7113,7 @@ msgstr "Tast inn gjeldende PIN kode" msgid "Enter pin code" msgstr "Tast inn pin kode" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9258,7 +9258,7 @@ msgstr "" msgid "Immediate shut down" msgstr "" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12254,7 +12254,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13493,7 +13493,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21133,13 +21133,13 @@ msgstr "Se tekst-TV..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21361,7 +21361,7 @@ msgstr "" msgid "Weekly" msgstr "" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21721,7 +21721,7 @@ msgstr "Uten varsel" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/nl.po b/po/nl.po index cd5cba84b69..ca9da989729 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2430,7 +2430,7 @@ msgstr "Weet u zeker dat u dit log wilt verwijderen:\n" msgid "Are you sure you want to delete this?" msgstr "Weet u zeker dat u dit wil verwijderen?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Weet u zeker dat u de wizard wilt afsluiten?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7331,7 +7331,7 @@ msgstr "Voer definitieve pincode in" msgid "Enter pin code" msgstr "Voer pincode in" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Tekst invoeren via een aangesloten toetsenbord" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9514,7 +9514,7 @@ msgstr "Image wizard" msgid "Immediate shut down" msgstr "Onmiddellijk uitschakelen" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "De wizard nu afsluiten (alleen in de Debug-modus)" msgid "Immediately restart selected devices." @@ -12535,7 +12535,7 @@ msgstr "Open de Plugin Browser" msgid "Open the Plugin Browser settings screen" msgstr "Plugin Browser instellingen" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Open het Virtuele toetsenbord voor tekstinvoer" msgid "Open the context menu" @@ -13788,7 +13788,7 @@ msgstr "Mogelijke oorzaak kan zijn" msgid "Proc model" msgstr "Proc model" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Doorgaan naar de volgende stap" msgid "Proceed with the update" @@ -21675,13 +21675,13 @@ msgstr "Teletekst weergeven..." msgid "View the archive contents" msgstr "Bekijk de inhoud van het archief" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Het volgende item in een lijst weergeven" msgid "View the package contents" msgstr "De inhoud van het pakket bekijken" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Het vorige item in een lijst weergeven" msgid "View video CD..." @@ -21903,7 +21903,7 @@ msgstr "Weekenden" msgid "Weekly" msgstr "Wekelijks" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Welkom Wizard" #, python-format @@ -22291,7 +22291,7 @@ msgstr "Zonder popup" msgid "Without query" msgstr "zonder Query" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Wizard Acties" msgid "Wolof" diff --git a/po/nn.po b/po/nn.po index ad43f5e30a5..a37c552932b 100644 --- a/po/nn.po +++ b/po/nn.po @@ -2702,7 +2702,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Er du sikker på at du vil avslutte denne veiviseren?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7819,7 +7819,7 @@ msgstr "" msgid "Enter pin code" msgstr "Tast pinkode:" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10174,7 +10174,7 @@ msgstr "" msgid "Immediate shut down" msgstr "Slås av umiddelbart" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13494,7 +13494,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14871,7 +14871,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23206,13 +23206,13 @@ msgstr "Vis teletext..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -23454,7 +23454,7 @@ msgstr "" msgid "Weekly" msgstr "Ukentlig" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23828,7 +23828,7 @@ msgstr "Uten popup" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/pl.po b/po/pl.po index 59d4281af57..49368342d01 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2463,7 +2463,7 @@ msgstr "Czy chcesz usunąć ten crash log:\n" msgid "Are you sure you want to delete this?" msgstr "Czy na pewno chcesz to usunąć?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Czy chcesz zamknąć kreatora?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7241,7 +7241,7 @@ msgstr "Wprowadź stały kod PIN" msgid "Enter pin code" msgstr "Wpisz PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Wpisz tekst za pomocą dołączonej klawiatury" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9414,7 +9414,7 @@ msgstr "Kreator systemu" msgid "Immediate shut down" msgstr "Natychmiastowe wyłączenie" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Natychmiast opuść kreatora (tylko tryb debugowania)" msgid "Immediately restart selected devices." @@ -12435,7 +12435,7 @@ msgstr "Przeglądaj dostępne wtyczki" msgid "Open the Plugin Browser settings screen" msgstr "Otwórz ekran ustawień przeglądarki wtyczek" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Otwórz wirtualną klawiaturę, aby wpisać tekst" msgid "Open the context menu" @@ -13685,7 +13685,7 @@ msgstr "Prawdopodobnymi przyczynami mogą być" msgid "Proc model" msgstr "Model Procesora" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Kontynuuj w następnym kroku" msgid "Proceed with the update" @@ -21490,13 +21490,13 @@ msgstr "Wyświetl telegazetę..." msgid "View the archive contents" msgstr "Wyświetl zawartości archiwum" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Wyświetl kolejny element na liście" msgid "View the package contents" msgstr "Wyświetl zawartości pakietu" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Wyświetl poprzedni element na liście" msgid "View video CD..." @@ -21718,7 +21718,7 @@ msgstr "Weekendy" msgid "Weekly" msgstr "Co tydzień" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Kreator powitalny" #, python-format @@ -22089,7 +22089,7 @@ msgstr "Bez okienka" msgid "Without query" msgstr "bez warunku" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Akcje kreatora" msgid "Wolof" diff --git a/po/pt.po b/po/pt.po index d7cc0bb2e8e..dcb6c950f7d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -2535,7 +2535,7 @@ msgid "Are you sure you want to delete this?" msgstr "Tem certeza de que deseja apagar isso?" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Tem a certeza que deseja sair deste assistente?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7511,7 +7511,7 @@ msgstr "" msgid "Enter pin code" msgstr "Insira o código PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9780,7 +9780,7 @@ msgstr "Assistente de Configuração" msgid "Immediate shut down" msgstr "Desligar imediatamente" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12988,7 +12988,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14330,7 +14330,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22407,13 +22407,13 @@ msgstr "Ver teletexto..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -22650,7 +22650,7 @@ msgstr "" msgid "Weekly" msgstr "Semanalmente" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23024,7 +23024,7 @@ msgstr "Sem janela" msgid "Without query" msgstr "sem questionar" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/pt_BR.po b/po/pt_BR.po index 4684cbbb17a..164e656fe47 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2588,7 +2588,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Sair do assistente?" #, fuzzy @@ -7511,7 +7511,7 @@ msgstr "" msgid "Enter pin code" msgstr "Informe a senha" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9756,7 +9756,7 @@ msgstr "" msgid "Immediate shut down" msgstr "Desligar imediatamente" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12902,7 +12902,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14195,7 +14195,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22203,13 +22203,13 @@ msgstr "Ver teletexto..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -22440,7 +22440,7 @@ msgstr "" msgid "Weekly" msgstr "semanal" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22808,7 +22808,7 @@ msgstr "Sem popup" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/ro.po b/po/ro.po index c0a0de08611..ce00054b0d1 100644 --- a/po/ro.po +++ b/po/ro.po @@ -2434,7 +2434,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7263,7 +7263,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9468,7 +9468,7 @@ msgstr "" msgid "Immediate shut down" msgstr "shutdown imediat" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12596,7 +12596,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13877,7 +13877,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21751,13 +21751,13 @@ msgstr "Vezi teletext ..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" #, fuzzy @@ -21985,7 +21985,7 @@ msgstr "" msgid "Weekly" msgstr "saptamanal" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22351,7 +22351,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/ru.po b/po/ru.po index eaad06b851a..7f7221f86ef 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2455,7 +2455,7 @@ msgstr "Действительно хотите удалить этот лог:\ msgid "Are you sure you want to delete this?" msgstr "Вы уверены, что хотите удалить это?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Уверены, что хотите выйти из этого мастера?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7232,7 +7232,7 @@ msgstr "Сменить PIN-код" msgid "Enter pin code" msgstr "Введите PIN-код" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Ввод текста с подключенной клавиатуры" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9405,7 +9405,7 @@ msgstr "Мастер имиджа" msgid "Immediate shut down" msgstr "Немедленное выключение" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Немедленно выйти из мастера (только в режиме отладки)" msgid "Immediately restart selected devices." @@ -12425,7 +12425,7 @@ msgstr "Открыть меню плагинов" msgid "Open the Plugin Browser settings screen" msgstr "Откройте экран настроек браузера плагинов" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Откройте виртуальную клавиатуру для ввода текста" msgid "Open the context menu" @@ -13675,7 +13675,7 @@ msgstr "Вероятными причинами могут быть" msgid "Proc model" msgstr "Модель процесса" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Перейти к следующему шагу" msgid "Proceed with the update" @@ -21479,13 +21479,13 @@ msgstr "Просмотр телетекста..." msgid "View the archive contents" msgstr "Посмотреть содержимое архива" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Просмотр следующего элемента в списке" msgid "View the package contents" msgstr "Посмотреть содержимое пакета" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Просмотр предыдущего элемента в списке" msgid "View video CD..." @@ -21707,7 +21707,7 @@ msgstr "Выходные дни" msgid "Weekly" msgstr "Еженедельно" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Добро пожаловать в Мастер" #, python-format @@ -22078,7 +22078,7 @@ msgstr "Без всплывающего сообщения" msgid "Without query" msgstr "Без запроса" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Действия мастера" msgid "Wolof" diff --git a/po/sk.po b/po/sk.po index 1382f663acf..5493d6d7e5e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2454,7 +2454,7 @@ msgstr "Naozaj chcete vymazať tento záznam:\n" msgid "Are you sure you want to delete this?" msgstr "Naozaj to chcete vymazať?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Naozaj chcete ukončiť tohto sprievodcu?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7231,7 +7231,7 @@ msgstr "Zadajte trvalý kód PIN" msgid "Enter pin code" msgstr "Zadajte PIN kód" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Zadajte text pomocou pripojenej klávesnice" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9404,7 +9404,7 @@ msgstr "Sprievodca pre image" msgid "Immediate shut down" msgstr "Ihneď vypnúť" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Ihneď ukončiť sprievodcu (len režim ladenia)" msgid "Immediately restart selected devices." @@ -12424,7 +12424,7 @@ msgstr "Otvoriť prehliadač pluginov" msgid "Open the Plugin Browser settings screen" msgstr "Otvoriť obrazovku s nastaveniami prehliadača pluginov" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Otvoriť virtuálnu klávesnicu pre zadanie textu" msgid "Open the context menu" @@ -13674,7 +13674,7 @@ msgstr "Možné príčiny" msgid "Proc model" msgstr "Model procesora" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Pokračovať na ďalší krok" msgid "Proceed with the update" @@ -21478,13 +21478,13 @@ msgstr "Zobraziť teletext…" msgid "View the archive contents" msgstr "Zobraziť obsah archívu" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Zobraziť ďalšiu položku v zozname" msgid "View the package contents" msgstr "Zobraziť obsah balíčka" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Zobraziť predchádzajúcu položku v zozname" msgid "View video CD..." @@ -21706,7 +21706,7 @@ msgstr "Víkendy" msgid "Weekly" msgstr "Týždenne" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Uvítací sprievodca" #, python-format @@ -22077,7 +22077,7 @@ msgstr "Bez vyskakovacieho okna" msgid "Without query" msgstr "Bez opýtania" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Akcie sprievodcu" msgid "Wolof" diff --git a/po/sl.po b/po/sl.po index 47796223127..01ba921bdce 100644 --- a/po/sl.po +++ b/po/sl.po @@ -2716,7 +2716,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Ste prepričani, da želite zapreti čarovnik?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7911,7 +7911,7 @@ msgstr "" msgid "Enter pin code" msgstr "Vnesite PIN kodo" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10269,7 +10269,7 @@ msgstr "" msgid "Immediate shut down" msgstr "Takojšen izklop" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13669,7 +13669,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -15074,7 +15074,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23511,13 +23511,13 @@ msgstr "Ogled teleteksta" msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -23767,7 +23767,7 @@ msgstr "" msgid "Weekly" msgstr "vsak teden" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -24145,7 +24145,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/sq.po b/po/sq.po index 06e6dc980b0..5b6f1a35731 100644 --- a/po/sq.po +++ b/po/sq.po @@ -2430,7 +2430,7 @@ msgstr "A je i sigurt që dëshiron të eleminosh këtë log:\n" msgid "Are you sure you want to delete this?" msgstr "Je i sigurt që do ta eleminosh këtë?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Je i sigurt që do të dalësh nga ky magjistar?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7193,7 +7193,7 @@ msgstr "Fut kodin PIN të vazhdueshëm" msgid "Enter pin code" msgstr "Fut kodin pin" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9366,7 +9366,7 @@ msgstr "ImageWizard" msgid "Immediate shut down" msgstr "Mbyllje e menjëhershme" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12355,7 +12355,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13591,7 +13591,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21254,13 +21254,13 @@ msgstr "Shiko teletekstin..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21482,7 +21482,7 @@ msgstr "" msgid "Weekly" msgstr "Javore" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21847,7 +21847,7 @@ msgstr "Pa popup" msgid "Without query" msgstr "pa Kërkesë" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/sr.po b/po/sr.po index e0d8102ed13..edadaf10fb8 100644 --- a/po/sr.po +++ b/po/sr.po @@ -2716,7 +2716,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Da li ste sigurni da želite izaći iz ovog čarobnjaka?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7851,7 +7851,7 @@ msgstr "" msgid "Enter pin code" msgstr "Unesi PIN kod" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10194,7 +10194,7 @@ msgstr "" msgid "Immediate shut down" msgstr "odmah isključi" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13583,7 +13583,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14972,7 +14972,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23337,13 +23337,13 @@ msgstr "Pregled teleteksta..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -23588,7 +23588,7 @@ msgstr "" msgid "Weekly" msgstr "nedeljno" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23963,7 +23963,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/sv.po b/po/sv.po index 0d8e253756f..9a560bc4acb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2679,7 +2679,7 @@ msgid "Are you sure you want to delete this?" msgstr "" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Är du säker på att du vill avsluta den här guiden?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7800,7 +7800,7 @@ msgstr "Ange beständig PIN-kod" msgid "Enter pin code" msgstr "Ange PIN-kod" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -10151,7 +10151,7 @@ msgstr "" msgid "Immediate shut down" msgstr "Direkt avstängning" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -13489,7 +13489,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14878,7 +14878,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -23262,13 +23262,13 @@ msgstr "Visa text-tv..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" # @@ -23510,7 +23510,7 @@ msgstr "" msgid "Weekly" msgstr "Veckovis" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23885,7 +23885,7 @@ msgstr "Utan popup" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/th.po b/po/th.po index 36f563897c6..51b724f0575 100644 --- a/po/th.po +++ b/po/th.po @@ -2492,7 +2492,7 @@ msgstr "" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "ท่านต้องการที่ออกจากตัวช่วยหรือไม่?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7328,7 +7328,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9540,7 +9540,7 @@ msgstr "" msgid "Immediate shut down" msgstr "ปิดเครื่องทันที (Shutdown)" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12673,7 +12673,7 @@ msgstr "" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13954,7 +13954,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21830,13 +21830,13 @@ msgstr "อ่านเทเลเท็กซ์..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" #, fuzzy @@ -22064,7 +22064,7 @@ msgstr "" msgid "Weekly" msgstr "รายสัปดาห์" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22429,7 +22429,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/tr.po b/po/tr.po index d533981648d..4775ee16fef 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2501,7 +2501,7 @@ msgid "Are you sure you want to delete this?" msgstr "Bunu silmek istediğinizden emin misiniz?" # -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Sihirbazdan çıkmak istiyor musunuz?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7497,7 +7497,7 @@ msgstr "Kalıcı PIN kodunu girin" msgid "Enter pin code" msgstr "PIN girin" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Ekli bir klavye aracılığıyla metin girin" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9779,7 +9779,7 @@ msgstr "Image Sihirbazı" msgid "Immediate shut down" msgstr "Hemen kapatma" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Sihirbazdan hemen çıkın (yalnızca Hata Ayıklama modu)" msgid "Immediately restart selected devices." @@ -12989,7 +12989,7 @@ msgstr "Eklenti Tarayıcısını Aç" msgid "Open the Plugin Browser settings screen" msgstr "Eklenti Tarayıcı ayarları ekranını açın" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Metin girişi için VirtualKeyBoard'u açın" msgid "Open the context menu" @@ -14322,7 +14322,7 @@ msgstr "Muhtemel sebepler olabilir" msgid "Proc model" msgstr "Işlem modeli" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Sonraki Adıma Geç" msgid "Proceed with the update" @@ -22489,13 +22489,13 @@ msgstr "Teletext izle..." msgid "View the archive contents" msgstr "Arşiv içeriğini görüntüleyin" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Listedeki bir sonraki öğeyi görüntüleme" msgid "View the package contents" msgstr "Paket içeriğini görüntüleyin" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Listedeki bir önceki öğeyi görüntüleme" # @@ -22732,7 +22732,7 @@ msgstr "Hafta sonları" msgid "Weekly" msgstr "Haftalık" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Hoş Geldiniz Sihirbazı" #, python-format @@ -23110,7 +23110,7 @@ msgstr "Popup olmadan" msgid "Without query" msgstr "Sorgu olmadan" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Sihirbaz Eylemleri" msgid "Wolof" diff --git a/po/uk.po b/po/uk.po index 2c5b5d503c8..4883190587b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2457,7 +2457,7 @@ msgstr "Ви дійсно бажаєте видалити цей лог:\n" msgid "Are you sure you want to delete this?" msgstr "Ви впевнені, що хочете видалити це?" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Ви дійсно бажаєте вийти з помічника?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7234,7 +7234,7 @@ msgstr "Введіть надійний пін-код" msgid "Enter pin code" msgstr "Введіть пін-код" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "Введіть текст за допомогою підключеної клавіатури" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9407,7 +9407,7 @@ msgstr "Майстер іміджу" msgid "Immediate shut down" msgstr "Негайне вимкнення" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "Негайно вийти з майстра (тільки в режимі налагодження)" msgid "Immediately restart selected devices." @@ -12427,7 +12427,7 @@ msgstr "Відкрити Провідник додатків" msgid "Open the Plugin Browser settings screen" msgstr "Відкрити вікно налаштувань браузера Плагінів" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "Відкрийте віртуальну клавіатуру для введення тексту" msgid "Open the context menu" @@ -13677,7 +13677,7 @@ msgstr "Можливі причини можуть бути" msgid "Proc model" msgstr "Модель ЦП" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "Перейти до наступного кроку" msgid "Proceed with the update" @@ -21481,13 +21481,13 @@ msgstr "Перегляд телетексту..." msgid "View the archive contents" msgstr "Переглянути вміст архіву" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "Переглянути наступний елемент у списку" msgid "View the package contents" msgstr "Переглянути вміст пакету" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "Переглянути попередній елемент у списку" msgid "View video CD..." @@ -21709,7 +21709,7 @@ msgstr "Вихідні дні" msgid "Weekly" msgstr "Щотижня" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "Ласкаво просимо до Майстра" #, python-format @@ -22080,7 +22080,7 @@ msgstr "Без спливаючих вікон" msgid "Without query" msgstr "без Запиту" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "Дії майстра" msgid "Wolof" diff --git a/po/vi.po b/po/vi.po index 50de9928dfa..1404900ec8f 100644 --- a/po/vi.po +++ b/po/vi.po @@ -2438,7 +2438,7 @@ msgstr "Bạn có chắc chắn muốn xóa nhật ký này:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "Bạn có chắc chắn muốn thoát khỏi thuật sĩ này?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7257,7 +7257,7 @@ msgstr "Nhập mã PIN liên tục" msgid "Enter pin code" msgstr "Nhập mã PIN" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9465,7 +9465,7 @@ msgstr "Hình ảnh" msgid "Immediate shut down" msgstr "Tắt máy ngay lập tức" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12561,7 +12561,7 @@ msgstr "Mở Trình duyệt Plugin" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13818,7 +13818,7 @@ msgstr "Nguyên nhân có thể là" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21648,13 +21648,13 @@ msgstr "Xem teletext ..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21880,7 +21880,7 @@ msgstr "" msgid "Weekly" msgstr "Hàng tuần" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -22248,7 +22248,7 @@ msgstr "Không có cửa sổ bật lên" msgid "Without query" msgstr "không có truy vấn" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/zh_CN.po b/po/zh_CN.po index d197178c0b2..ce3880e3f03 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -2425,7 +2425,7 @@ msgstr "是否确实要删除此日志:\n" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "是否确定要退出此向导?" msgid "Are you sure you want to reload the EPG data from:\n" @@ -7190,7 +7190,7 @@ msgstr "输入永久PIN码" msgid "Enter pin code" msgstr "输入PIN码" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9361,7 +9361,7 @@ msgstr "镜像向导" msgid "Immediate shut down" msgstr "立即关机" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12376,7 +12376,7 @@ msgstr "打开插件浏览器" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -13621,7 +13621,7 @@ msgstr "可能的原因是" msgid "Proc model" msgstr "PROC模型" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -21338,13 +21338,13 @@ msgstr "查看图文电视..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -21566,7 +21566,7 @@ msgstr "" msgid "Weekly" msgstr "每周" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -21931,7 +21931,7 @@ msgstr "不弹出" msgid "Without query" msgstr "无需查询" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof" diff --git a/po/zh_HK.po b/po/zh_HK.po index 5084507c854..7a8e0f50943 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -2512,7 +2512,7 @@ msgstr "確定要退出此嚮導?" msgid "Are you sure you want to delete this?" msgstr "" -msgid "Are you sure you want to exit this wizard?" +msgid "Are you sure you want to quit the setup wizard?" msgstr "確定要退出此嚮導?" #, fuzzy @@ -7484,7 +7484,7 @@ msgstr "" msgid "Enter pin code" msgstr "" -msgid "Enter text via an attached keyboard" +msgid "Enter text using a physical keyboard" msgstr "" msgid "Enter the frequency at which you LNB switches between low band and high band. For more information consult the specifications of your LNB." @@ -9771,7 +9771,7 @@ msgstr "嚮導" msgid "Immediate shut down" msgstr "" -msgid "Immediately exit the wizard (Debug mode only)" +msgid "Quit the setup wizard instantly (Debug Mode only)" msgstr "" msgid "Immediately restart selected devices." @@ -12996,7 +12996,7 @@ msgstr "流覽插件" msgid "Open the Plugin Browser settings screen" msgstr "" -msgid "Open the VirtualKeyBoard for text entry" +msgid "Show an on-screen keyboard to enter text with" msgstr "" msgid "Open the context menu" @@ -14329,7 +14329,7 @@ msgstr "" msgid "Proc model" msgstr "" -msgid "Proceed to the next step" +msgid "Move to the next step" msgstr "" msgid "Proceed with the update" @@ -22507,13 +22507,13 @@ msgstr "檢視電傳視訊..." msgid "View the archive contents" msgstr "" -msgid "View the next item in a list" +msgid "Go to the next item in a list" msgstr "" msgid "View the package contents" msgstr "" -msgid "View the previous item in a list" +msgid "Go to the previous item in a list" msgstr "" msgid "View video CD..." @@ -22751,7 +22751,7 @@ msgstr "" msgid "Weekly" msgstr "每週" -msgid "Welcome Wizard" +msgid "Setup Wizard" msgstr "" #, python-format @@ -23118,7 +23118,7 @@ msgstr "" msgid "Without query" msgstr "" -msgid "Wizard Actions" +msgid "Setup Wizard Actions" msgstr "" msgid "Wolof"