From 4e83dd54e5d858df7c8913b5ba1f81ba5a8e5258 Mon Sep 17 00:00:00 2001 From: teamblue-e2 Date: Wed, 5 Jun 2024 13:38:22 +0200 Subject: [PATCH] [NetworkSetup] Added possibility to drop current wifi config Requested by GigaBlue1 --- lib/python/Screens/NetworkSetup.py | 24 +++++++++++++++-- po/ar.po | 35 +++++++++++++++++++++---- po/bg.po | 32 ++++++++++++++++++++--- po/ca.po | 40 +++++++++++++++++++++++++---- po/cs.po | 37 +++++++++++++++++++++++---- po/da.po | 39 ++++++++++++++++++++++++---- po/de.po | 29 +++++++++++++++++---- po/el.po | 31 +++++++++++++++++++--- po/en.po | 25 +++++++++++++++--- po/enigma2.pot | 31 +++++++++++++++++----- po/es.po | 41 ++++++++++++++++++++++++++---- po/et.po | 33 +++++++++++++++++++++--- po/fa.po | 35 ++++++++++++++++++++++--- po/fi.po | 39 ++++++++++++++++++++++++---- po/fr.po | 33 +++++++++++++++++++++--- po/fy.po | 40 +++++++++++++++++++++++++---- po/gl.po | 39 ++++++++++++++++++++++++---- po/he.po | 35 +++++++++++++++++++++---- po/hr.po | 40 +++++++++++++++++++++++++---- po/hu.po | 33 +++++++++++++++++++++--- po/id.po | 33 +++++++++++++++++++++--- po/is.po | 38 +++++++++++++++++++++++---- po/it.po | 39 ++++++++++++++++++++++++---- po/ku.po | 33 +++++++++++++++++++++--- po/lt.po | 33 +++++++++++++++++++++--- po/lv.po | 33 +++++++++++++++++++++--- po/mk.po | 33 +++++++++++++++++++++--- po/nb.po | 34 ++++++++++++++++++++++--- po/nl.po | 33 +++++++++++++++++++++--- po/nn.po | 35 ++++++++++++++++++++++--- po/pl.po | 38 +++++++++++++++++++++++---- po/pt.po | 39 ++++++++++++++++++++++++---- po/pt_BR.po | 33 +++++++++++++++++++++--- po/ro.po | 33 +++++++++++++++++++++--- po/ru.po | 33 +++++++++++++++++++++--- po/sk.po | 33 +++++++++++++++++++++--- po/sl.po | 38 +++++++++++++++++++++++---- po/sr.po | 40 +++++++++++++++++++++++++---- po/sv.po | 39 ++++++++++++++++++++++++---- po/th.po | 33 +++++++++++++++++++++--- po/tr.po | 33 +++++++++++++++++++++--- po/uk.po | 33 +++++++++++++++++++++--- po/vi.po | 31 +++++++++++++++++++--- po/zh_CN.po | 25 +++++++++++++++--- po/zh_HK.po | 25 +++++++++++++++--- 45 files changed, 1342 insertions(+), 199 deletions(-) diff --git a/lib/python/Screens/NetworkSetup.py b/lib/python/Screens/NetworkSetup.py index ba9a88269a..d1ac4e81bf 100644 --- a/lib/python/Screens/NetworkSetup.py +++ b/lib/python/Screens/NetworkSetup.py @@ -1,5 +1,5 @@ import subprocess -from os import path, unlink, system +from os import path, unlink, system, remove import string from random import Random from Screens.Screen import Screen @@ -448,7 +448,7 @@ def __init__(self, session, networkinfo, essid=None): self["Adaptertext"] = StaticText(_("Network:")) self["Adapter"] = StaticText() - self["introduction2"] = StaticText(_("Press OK to activate the settings.")) + self["introduction2"] = StaticText(_("Press green button to activate the settings.")) self["key_red"] = StaticText(_("Cancel")) self["key_green"] = StaticText(_("Save")) @@ -906,6 +906,8 @@ def ok(self): if self["menulist"].getCurrent()[1][0] == 'extendedSetup': self.extended = self["menulist"].getCurrent()[1][2] self.extended(self.session, self.iface) + if self["menulist"].getCurrent()[1] == 'removewifi': + self.session.openWithCallback(self.removeWifiConfig, MessageBox, (_("Are you sure you want to remove your wifi configuration?\n\n") + self.oktext)) def up(self): self["menulist"].up() @@ -949,6 +951,8 @@ def loadDescription(self): self["description"].setText(_("Set the MAC-adress of your receiver.\n") + self.oktext) if self["menulist"].getCurrent()[1] == 'ipv6': self["description"].setText(_("Enable/Disable IPv6 support of your receiver.\n") + self.oktext) + if self["menulist"].getCurrent()[1] == 'removewifi': + self["description"].setText(_("Delete the current Wifi configuration.\n") + self.oktext) def updateStatusbar(self, data=None): self.mainmenu = self.genMainMenu() @@ -1002,6 +1006,12 @@ def genMainMenu(self): if path.exists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/NetworkWizard/networkwizard.xml")): menu.append((_("Network wizard"), "openwizard")) + try: + from Plugins.SystemPlugins.WirelessLan.Wlan import getWlanConfigName + if path.exists(getWlanConfigName(self.iface)): + menu.append((_("Delete Wifi configuration"), "removewifi")) + except: + pass # CHECK WHICH BOXES NOW SUPPORT MAC-CHANGE VIA GUI if getBoxType() not in ('DUMMY') and self.iface == 'eth0': menu.append((_("Network MAC settings"), "mac")) @@ -1041,6 +1051,16 @@ def WlanScanClosed(self, *ret): iStatus.stopWlanConsole() self.updateStatusbar() + def removeWifiConfig(self, ret=False): + if ret: + from Plugins.SystemPlugins.WirelessLan.Wlan import getWlanConfigName + try: + remove(getWlanConfigName(self.iface)) + self.session.open(MessageBox, _("Finished removing your wifi configuration"), type=MessageBox.TYPE_INFO, timeout=10, default=False) + self.updateStatusbar() + except: + self.session.open(MessageBox, _("Error removing your wifi configuration"), type=MessageBox.TYPE_ERROR, timeout=10, default=False) + def restartLan(self, ret=False): if ret: iNetwork.restartNetwork(self.restartLanDataAvail) diff --git a/po/ar.po b/po/ar.po index 0f0e23292c..4542da8b75 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2018-12-17 02:51+0200\n" "Last-Translator: Hazem \n" "Language-Team: Arabic \n" @@ -1439,6 +1439,14 @@ msgstr "هل أنت متأكد أنك تريد الخروج من هذه النا msgid "Are you sure you want to reload the EPG data from:\n" msgstr "هل أنت متأكد أنك تريد الخروج من هذه النافذه ؟" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"هل أنت متاكد أنك تريد تنشيط تكوينات الشبكه؟\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3677,6 +3685,10 @@ msgstr "مسح البند" msgid "Delete Image" msgstr "حذف الملف" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "تهيئة الموالف" + #, fuzzy msgid "Delete all the text" msgstr "مسح مدخل قائمة العرض" @@ -3728,6 +3740,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "تنشيط التكوين الحالى" + msgid "Delete the selected files or directories" msgstr "" @@ -4849,6 +4865,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "إنتهاء تحرير الباقه" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "تهيئة الموالف" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5420,6 +5440,10 @@ msgstr "تم الانتهاء" msgid "Finished configuring your network" msgstr "تم الانتهاء من تكوين شبكتك" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "تم النتهاء من إعادة تشغيل الشبكه" + msgid "Finished restarting your network" msgstr "تم النتهاء من إعادة تشغيل الشبكه" @@ -9577,10 +9601,6 @@ msgstr "أضغط موافق من الريموت للمتابعه" msgid "Press OK to activate the selected %s skin." msgstr "أضغط موافق لتفعيل الجلد المختار." -# -msgid "Press OK to activate the settings." -msgstr "اضغط موافق لتفعيل الاعدادات" - msgid "Press OK to edit the settings." msgstr "أضغط موافق لتحرير الاعدادات" @@ -9630,6 +9650,11 @@ msgstr "أضغط موافق لتبدل الأختيار" msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "اضغط موافق لتفعيل الاعدادات" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/bg.po b/po/bg.po index a9b018cec4..0f08ecdf60 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2018-11-12 20:51+0200\n" "Last-Translator: Мартин Петков \n" "Language-Team: Bulgarian\n" @@ -1275,6 +1275,14 @@ msgstr "" "Искате ли да рестартирате вашия мрежов интерфейс?\n" "\n" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Искате ли да активирате тези мрежови настройки?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3378,6 +3386,10 @@ msgstr "Изтриване запис" msgid "Delete Image" msgstr "Неуспешно изтриване!" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Тунер конфигурация" + #, fuzzy msgid "Delete all the text" msgstr "Изтриване запис" @@ -3424,6 +3436,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Моля изчакайте за активиране на вашите мрежови настройки..." + msgid "Delete the selected files or directories" msgstr "" @@ -4459,6 +4475,9 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "редактирането на букет завърши" +msgid "Error removing your wifi configuration" +msgstr "" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4996,6 +5015,10 @@ msgstr "Завърши" msgid "Finished configuring your network" msgstr "Завърши мрежовата конфигурация" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Завърши рестартирането на мрежата" + msgid "Finished restarting your network" msgstr "Завърши рестартирането на мрежата" @@ -8793,9 +8816,6 @@ msgstr "Натиснете ОК на дистанционното за да пр msgid "Press OK to activate the selected %s skin." msgstr "Натиснете ОК за да активирате настройките." -msgid "Press OK to activate the settings." -msgstr "Натиснете ОК за да активирате настройките." - msgid "Press OK to edit the settings." msgstr "Натиснете ОК за да редактирате настройките." @@ -8843,6 +8863,10 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Натиснете ОК за да активирате настройките." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/ca.po b/po/ca.po index f420f13b65..6cf24b381c 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2007-08-14 10:23+0200\n" "Last-Translator: Oriol Pellicer \n" "Language-Team: \n" @@ -1429,6 +1429,15 @@ msgstr "" "segur que vols restaurar\n" "el següent backup:\n" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"segur que vols restaurar\n" +"el següent backup:\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3769,6 +3778,11 @@ msgstr "Esborrar entrada" msgid "Delete Image" msgstr "Ha fallat l'eliminació!" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configuració del sintonitzador" + # #, fuzzy msgid "Delete all the text" @@ -3827,6 +3841,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Configuració del sintonitzador" + msgid "Delete the selected files or directories" msgstr "" @@ -5004,6 +5023,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "fi de l'edició de llistes" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuració del sintonitzador" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5613,6 +5637,11 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Configuració del sintonitzador" + # msgid "Finished restarting your network" msgstr "" @@ -9952,10 +9981,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "Prem OK per a activar la configuració." -# -msgid "Press OK to activate the settings." -msgstr "Prem OK per a activar la configuració." - # msgid "Press OK to edit the settings." msgstr "" @@ -10014,6 +10039,11 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Prem OK per a activar la configuració." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/cs.po b/po/cs.po index 06a312fa2e..e6720951a1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: \n" "Last-Translator: ims \n" "Language-Team: PLi \n" @@ -1475,6 +1475,15 @@ msgstr "Opravdu chcete ukončit tohoto průvodce?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Opravdu chcete ukončit tohoto průvodce?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Chcete aktivovat tuto síťovou konfiguraci?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3891,6 +3900,10 @@ msgstr "smazat položku" msgid "Delete Image" msgstr "Odstranit časovač" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfigurace tuneru" + # #, fuzzy msgid "Delete all the text" @@ -3946,6 +3959,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivovat současnou konfiguraci" + msgid "Delete the selected files or directories" msgstr "" @@ -5180,6 +5198,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "ukončit úpravu přehledu" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Nastavení seznamu filmů" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5820,6 +5842,10 @@ msgstr "Dokončeno" msgid "Finished configuring your network" msgstr "Konfigurace sítě dokončena" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Dokončeno restartování sítě" + msgid "Finished restarting your network" msgstr "Dokončeno restartování sítě" @@ -10282,10 +10308,6 @@ msgstr "Stiskněte OK na dálkovém ovladači pro pokračování." msgid "Press OK to activate the selected %s skin." msgstr "Stiskněte OK pro aktivaci zvoleného skinu." -# -msgid "Press OK to activate the settings." -msgstr "Stiskněte OK pro aktivaci nastavení." - # msgid "Press OK to edit the settings." msgstr "Stiskněte OK pro úpravu nastavení." @@ -10347,6 +10369,11 @@ msgstr "Stiskněte OK pro změnu označení." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Stiskněte OK pro aktivaci nastavení." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/da.po b/po/da.po index e0b580156f..93e410a1d7 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2017-01-18 16:38+0100\n" "Last-Translator: lupine \n" "Language-Team: \n" @@ -1458,6 +1458,15 @@ msgstr "Bekræft at du vil afslutte denne hjælper?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Bekræft at du vil afslutte denne hjælper?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Er du sikker på, at du vil aktivere denne netværks opsætning?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3896,6 +3905,11 @@ msgstr "Slet indgang" msgid "Delete Image" msgstr "slet fil" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuner opsætning" + # #, fuzzy msgid "Delete all the text" @@ -3954,6 +3968,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "aktiver den aktuelle opsætning" + msgid "Delete the selected files or directories" msgstr "" @@ -5172,6 +5191,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "afslut pakkeredigering" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configurer filmliste" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5794,6 +5817,11 @@ msgstr "Færdig" msgid "Finished configuring your network" msgstr "Afsluttede opsætning af dit netværk" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Afsluttede genstart af dit netværk" + # msgid "Finished restarting your network" msgstr "Afsluttede genstart af dit netværk" @@ -10279,10 +10307,6 @@ msgstr "Tryk OK på din fjernbetjening for at fortsætte." msgid "Press OK to activate the selected %s skin." msgstr "Tryk OK for at aktivere det valgte grafiske tema." -# -msgid "Press OK to activate the settings." -msgstr "Tryk OK for at aktivere indstillinger." - # msgid "Press OK to edit the settings." msgstr "Tryk på OK for at redigere indstillinger." @@ -10341,6 +10365,11 @@ msgstr "Tryk på OK for at slå valget til eller fra." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Tryk OK for at aktivere indstillinger." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/de.po b/po/de.po index 50902992a0..000e49a4b0 100644 --- a/po/de.po +++ b/po/de.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" -"PO-Revision-Date: 2024-06-04 19:03+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" +"PO-Revision-Date: 2024-06-05 13:51+0200\n" "Last-Translator: Teamblue teamblue@online.de \n" "Language-Team: Teamblue teamblue@online.de\n" "Language: de\n" @@ -1241,6 +1241,13 @@ msgstr "Sind Sie sicher, dass Sie diesen Assistenten verlassen möchten?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Sind Sie sicher, dass Sie die EPG Daten neu laden möchten:\n" +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Bist du sicher, dass du deine WLAN-Konfiguration entfernen willst?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3267,6 +3274,9 @@ msgstr "Lösche 1 Element" msgid "Delete Image" msgstr "Image löschen" +msgid "Delete Wifi configuration" +msgstr "WLAN-Konfiguration löschen" + msgid "Delete all the text" msgstr "Lösche gesamten Text" @@ -3309,6 +3319,9 @@ msgstr "Lösche das Zeichen links vom Text Cursor" msgid "Delete the character under the text cursor" msgstr "Lösche das Zeichen unter dem Text Cursor" +msgid "Delete the current Wifi configuration.\n" +msgstr "Lösche die aktuelle WLAN-Konfiguration.\n" + msgid "Delete the selected files or directories" msgstr "Ausgewählte Dateien oder Verzeichnisse löschen" @@ -4281,6 +4294,9 @@ msgstr "Fehler beim Lesen der 'bouquets.radio'" msgid "Error reading bouquets.tv" msgstr "Bouquet Liste öffnen" +msgid "Error removing your wifi configuration" +msgstr "Fehler beim Entfernen deiner WLAN-Konfiguration" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4793,6 +4809,9 @@ msgstr "Beendet" msgid "Finished configuring your network" msgstr "Netzwerk-Konfiguration abgeschlossen" +msgid "Finished removing your wifi configuration" +msgstr "Fertig mit dem Entfernen deiner WLAN-Konfiguration" + msgid "Finished restarting your network" msgstr "Netzwerkneustart abgeschlossen" @@ -8361,9 +8380,6 @@ msgstr "OK drücken zum Fortfahren." msgid "Press OK to activate the selected %s skin." msgstr "OK drücken, um den markierten Skin %s zu aktivieren." -msgid "Press OK to activate the settings." -msgstr "OK drücken zum Aktivieren." - msgid "Press OK to edit the settings." msgstr "OK drücken zum Editieren." @@ -8408,6 +8424,9 @@ msgstr "Drücken Sie OK, um die Auswahl umzuschalten." msgid "Press OK, save and exit..." msgstr "Drücke OK zum Speichern und Beenden..." +msgid "Press green button to activate the settings." +msgstr "Drücke die grüne Taste, um die Einstellungen zu aktivieren." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Drücken oder wählen Sie die Taste, und danach 'OK' drücken um die Funktion umzuschalten." diff --git a/po/el.po b/po/el.po index b06cca51be..6f60977145 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: \n" "Last-Translator: MCelliotG \n" "Language-Team: MCelliotG \n" @@ -1297,6 +1297,12 @@ msgstr "Σίγουρα να γίνει έξοδος από αυτό τον οδ msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Σίγουρα να γίνει έξοδος από αυτό τον οδηγό;" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "Σίγουρα θέλετε να ενεργοποιηθεί αυτή η ρύθμιση δικτύου;\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3453,6 +3459,10 @@ msgstr "Διαγραφή στοιχείου" msgid "Delete Image" msgstr "Διαγραφή χρονοδιακόπτη" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Ρύθμιση tuner" + #, fuzzy msgid "Delete all the text" msgstr "Διαγραφή στοιχείου λίστας αναπαραγωγής" @@ -3499,6 +3509,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Ενεργοποίηση τρέχουσας ρύθμισης" + msgid "Delete the selected files or directories" msgstr "" @@ -4562,6 +4576,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "τέλος επεξεργασίας μπουκέτου" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Ρύθμιση λίστας ταινιών" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5120,6 +5138,10 @@ msgstr "Ολοκληρώθηκε" msgid "Finished configuring your network" msgstr "Ολοκλήρωση ρύθμισης δικτύου" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Ολοκλήρωση επανεκκίνησης δικτύου" + msgid "Finished restarting your network" msgstr "Ολοκλήρωση επανεκκίνησης δικτύου" @@ -9013,9 +9035,6 @@ msgstr "Πιέστε ΟΚ για συνέχεια." msgid "Press OK to activate the selected %s skin." msgstr "Πιέστε ΟΚ για ενεργοποίηση του επιλεγμένου θέματος." -msgid "Press OK to activate the settings." -msgstr "Πιέστε ΟΚ για να ενεργοποιηθούν οι ρυθμίσεις." - msgid "Press OK to edit the settings." msgstr "Πιέστε ΟΚ για επεξεργασία των ρυθμίσεων." @@ -9064,6 +9083,10 @@ msgstr "Πιέστε ΟΚ για εναλλαγή της επιλογής." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Πιέστε ΟΚ για να ενεργοποιηθούν οι ρυθμίσεις." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/en.po b/po/en.po index a2310c6102..1b4ab36a02 100644 --- a/po/en.po +++ b/po/en.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: \n" "Last-Translator: satdreamgr\n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "" +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3188,6 +3193,9 @@ msgstr "" msgid "Delete Image" msgstr "" +msgid "Delete Wifi configuration" +msgstr "" + msgid "Delete all the text" msgstr "" @@ -3230,6 +3238,9 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +msgid "Delete the current Wifi configuration.\n" +msgstr "" + msgid "Delete the selected files or directories" msgstr "" @@ -4181,6 +4192,9 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +msgid "Error removing your wifi configuration" +msgstr "" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4677,6 +4691,9 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +msgid "Finished removing your wifi configuration" +msgstr "" + msgid "Finished restarting your network" msgstr "" @@ -8204,9 +8221,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "" -msgid "Press OK to activate the settings." -msgstr "" - msgid "Press OK to edit the settings." msgstr "" @@ -8251,6 +8265,9 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +msgid "Press green button to activate the settings." +msgstr "" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/enigma2.pot b/po/enigma2.pot index 8fcf49a280..4086ca77d3 100644 --- a/po/enigma2.pot +++ b/po/enigma2.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1125,6 +1125,11 @@ msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "" +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -2625,6 +2630,9 @@ msgstr "" msgid "Delete Image" msgstr "" +msgid "Delete Wifi configuration" +msgstr "" + msgid "Delete all the text" msgstr "" @@ -2667,6 +2675,9 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +msgid "Delete the current Wifi configuration.\n" +msgstr "" + msgid "Delete the selected files or directories" msgstr "" @@ -3452,6 +3463,9 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +msgid "Error removing your wifi configuration" +msgstr "" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -3868,6 +3882,9 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +msgid "Finished removing your wifi configuration" +msgstr "" + msgid "Finished restarting your network" msgstr "" @@ -6865,9 +6882,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "" -msgid "Press OK to activate the settings." -msgstr "" - msgid "Press OK to edit the settings." msgstr "" @@ -6912,6 +6926,9 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +msgid "Press green button to activate the settings." +msgstr "" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" @@ -12804,6 +12821,9 @@ msgstr "" msgid "HDMI-IN Recording settings" msgstr "" +msgid "Hard disk setup" +msgstr "" + msgid "HotKey" msgstr "" @@ -13458,9 +13478,6 @@ msgstr "" msgid "HI-cleanup for external subtitles" msgstr "" -msgid "Hard disk setup" -msgstr "" - msgid "Hard disk standby after" msgstr "" diff --git a/po/es.po b/po/es.po index ee4e4915ad..7c4fa29dc1 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2020-03-17 01:28+0100\n" "Last-Translator: Jose Juan \n" "Language-Team: ANGELODOS angelo2807@hotmail.com\n" @@ -1477,6 +1477,15 @@ msgstr "¿Está seguro que quiere salir de este asistente?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "¿Está seguro que quiere salir de este asistente?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"¿Está seguro de que quiere activar esta configuración de red?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3915,6 +3924,12 @@ msgstr "Borrar entrada" msgid "Delete Image" msgstr "Borrar grabación" +# +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configuración sintonizador" + # # #, fuzzy @@ -3974,6 +3989,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Activar configuración actual" + msgid "Delete the selected files or directories" msgstr "" @@ -5195,6 +5215,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "abrir edición de listas" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuración de la lista de películas" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5841,6 +5866,11 @@ msgstr "Terminado" msgid "Finished configuring your network" msgstr "Termió de configurar su red" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Terminó reiniciando su red" + # msgid "Finished restarting your network" msgstr "Terminó reiniciando su red" @@ -10275,10 +10305,6 @@ msgstr "Pulse OK en el mando a distancia para continuar." msgid "Press OK to activate the selected %s skin." msgstr "Presione OK para activar la piel% s seleccionada." -# -msgid "Press OK to activate the settings." -msgstr "Pulse OK para activar la configuración." - # msgid "Press OK to edit the settings." msgstr "Pulse OK para editar la configuración." @@ -10338,6 +10364,11 @@ msgstr "Pulse OK para activar la selección." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Pulse OK para activar la configuración." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/et.po b/po/et.po index 08dcd7a812..bda0f372b9 100644 --- a/po/et.po +++ b/po/et.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-04-03 06:49+0300\n" "Last-Translator: \n" "Language-Team: Raivo, Henkka, eesatfan, rimas, zeros\\n faas, sateks, valgekotkas, tigekala, rootsikunn\\n kain, i70, mustkass, pelmeen, Scott\\n \n" @@ -1299,6 +1299,14 @@ msgstr "Kas soovid väljuda seadistusabist?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Kas soovid väljuda seadistusabist?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Kas tahad kindlasti võrgukaardi uuesti käivitada?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3455,6 +3463,10 @@ msgstr "Kustuta valik" msgid "Delete Image" msgstr "Kustuta fail" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuuneri seaded" + #, fuzzy msgid "Delete all the text" msgstr "Kustuta esitusloendi kirje" @@ -3501,6 +3513,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Jõusta praegused seaded" + msgid "Delete the selected files or directories" msgstr "" @@ -4556,6 +4572,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "salvesta muudatused ja välju" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Filmilisti seaded" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5099,6 +5119,10 @@ msgstr "Lõppenud" msgid "Finished configuring your network" msgstr "Lõpetasin võrgu seadistamise" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Võrgu restart on tehtud" + msgid "Finished restarting your network" msgstr "Võrgu restart on tehtud" @@ -8977,9 +9001,6 @@ msgstr "Jätkamiseks vajuta OK." msgid "Press OK to activate the selected %s skin." msgstr "Vajuta OK uue välimuse aktiveerimiseks." -msgid "Press OK to activate the settings." -msgstr "Seadete aktiveerimiseks vajuta OK." - msgid "Press OK to edit the settings." msgstr "Sätete muutmiseks vajuta OK." @@ -9027,6 +9048,10 @@ msgstr "Valiku muutmiseks vajuta OK." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Seadete aktiveerimiseks vajuta OK." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/fa.po b/po/fa.po index 8a0a50c963..582bbdd2cd 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2018-02-14 16:51+0330\n" "Last-Translator: Persian Prince \n" "Language-Team: Persian Professionals \n" @@ -1309,6 +1309,15 @@ msgstr "آیا مطمئن هستید که میخواهید از این هدای msgid "Are you sure you want to reload the EPG data from:\n" msgstr "آیا مطمئن هستید که میخواهید از این هدایتگر خارج شوید ؟" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"آیا مطمئن هستید که میخواهید این پیکربندی شبکه را فعال کنید ؟\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3494,6 +3503,10 @@ msgstr "حذف مورد" msgid "Delete Image" msgstr "حذف ناموفق" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "پیکربندی شبکه" + #, fuzzy msgid "Delete all the text" msgstr "حذف مورد" @@ -3543,6 +3556,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "اضافه کردن پیکربندی شبکه؟" + msgid "Delete the selected files or directories" msgstr "" @@ -4603,6 +4620,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "ویرایش لیست های کانال" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "پیکربندی لیست فیلم" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5155,6 +5176,11 @@ msgstr "پایان یافت" msgid "Finished configuring your network" msgstr "پیکربندی شبکه شما پایان یافت" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "راه اندازی مجدد شبکه شما پایان یافت" + # msgid "Finished restarting your network" msgstr "راه اندازی مجدد شبکه شما پایان یافت" @@ -9106,9 +9132,6 @@ msgstr "دکمه OK را برای ادامه دادن فشار دهید" msgid "Press OK to activate the selected %s skin." msgstr "دکمه OK را برای فعال کردن پوسته انتخاب شده فشار دهید" -msgid "Press OK to activate the settings." -msgstr "دکمه OK را برای فعال کردن تنظیمات فشار دهید" - msgid "Press OK to edit the settings." msgstr "دکمه OK را برای ویرایش تنظیمات فشار دهید" @@ -9158,6 +9181,10 @@ msgstr "دکمه OK را برای toggle انتخاب فشار دهید" msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "دکمه OK را برای فعال کردن تنظیمات فشار دهید" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/fi.po b/po/fi.po index 729d0b8da9..432a92d2b6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-02-13 20:52+0200\n" "Last-Translator: jamu\n" "Language-Team: BoxFreak/jamu\n" @@ -1442,6 +1442,15 @@ msgstr "Haluatko lopettaa avustustoiminnon?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Haluatko lopettaa avustustoiminnon?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Haluatko aktivoida nämä verkkoasetukset?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3832,6 +3841,11 @@ msgstr "Poista valinta" msgid "Delete Image" msgstr "Poista tiedosto" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Virittimien asetukset" + # #, fuzzy msgid "Delete all the text" @@ -3887,6 +3901,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivoi nykyiset asetukset" + msgid "Delete the selected files or directories" msgstr "" @@ -5084,6 +5103,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "tallenna muutokset ja poistu" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Tallenneluettelon asetukset" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5686,6 +5709,11 @@ msgstr "Päättyi" msgid "Finished configuring your network" msgstr "Verkon määrittely suoritettu" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Verkko käynnistyi uudelleen" + # msgid "Finished restarting your network" msgstr "Verkko käynnistyi uudelleen" @@ -10084,10 +10112,6 @@ msgstr "Jatka painamalla OK-näppäintä." msgid "Press OK to activate the selected %s skin." msgstr "Ota valittu teema käyttöön painamalla OK." -# -msgid "Press OK to activate the settings." -msgstr "Ota käyttöön painamalla OK." - # msgid "Press OK to edit the settings." msgstr "Muokkaa painamalla OK." @@ -10145,6 +10169,11 @@ msgstr "Muuta valintaa OK-näppäimellä." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Ota käyttöön painamalla OK." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/fr.po b/po/fr.po index 79847eddd3..f4ce5d877a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2021-12-06 10:46+0100\n" "Last-Translator: teamblue-e2 \n" "Language-Team: \n" @@ -1268,6 +1268,14 @@ msgstr "Êtes-vous sûr de vouloir quitter cet assistant ?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Êtes-vous certains de vouloir effacer les données EPG de:\n" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Êtes-vous sûr de vouloir activer cette configuration réseau ?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3359,6 +3367,10 @@ msgstr "Supprimer 1 élément" msgid "Delete Image" msgstr "Supprimer l’image" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configuration d'OpenWebif" + #, fuzzy msgid "Delete all the text" msgstr "Effacer tout le texte" @@ -3405,6 +3417,10 @@ msgstr "Supprimer le caractère à gauche du curseur du texte" msgid "Delete the character under the text cursor" msgstr "Supprimer le caractère sous le curseur du texte" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Activer la configuration actuelle" + msgid "Delete the selected files or directories" msgstr "Supprimer les fichiers ou les répertoires sélectionnés" @@ -4424,6 +4440,10 @@ msgstr "Erreur de lecture de bouquets.radio" msgid "Error reading bouquets.tv" msgstr "Erreur de lecture de bouquets.tv" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuration de la Liste des Films" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4956,6 +4976,10 @@ msgstr "Terminé" msgid "Finished configuring your network" msgstr "Termine la configuration de votre réseau" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Termine le redémarrage de votre réseau" + msgid "Finished restarting your network" msgstr "Termine le redémarrage de votre réseau" @@ -8667,9 +8691,6 @@ msgstr "Pressez OK sur la télécommande pour continuer." msgid "Press OK to activate the selected %s skin." msgstr "Appuyez sur OK pour activer la peau %s sélectionnée." -msgid "Press OK to activate the settings." -msgstr "Pressez OK pour activer les paramètres." - msgid "Press OK to edit the settings." msgstr "Pressez OK pour éditer les paramètres." @@ -8714,6 +8735,10 @@ msgstr "Pressez OK pour basculer le choix" msgid "Press OK, save and exit..." msgstr "Appuyer sur OK, sauvegarder et quitter…" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Pressez OK pour activer les paramètres." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Appuyez sur ou sélectionnez le bouton, puis appuyez sur «OK» pour attacher la fonction." diff --git a/po/fy.po b/po/fy.po index f646bae6a8..7d3ed83bae 100644 --- a/po/fy.po +++ b/po/fy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2008-12-29 16:22+0100\n" "Last-Translator: gerrit \n" "Language-Team: gerrit \n" @@ -1460,6 +1460,15 @@ msgstr "" "witte jo seker dizze werom te setten\n" "de extra kopie:\n" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Wolle jo wier dizze netwurk konfiguraasje aktief meitsje ?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3867,6 +3876,11 @@ msgstr "Ferwiderje ynfier" msgid "Delete Image" msgstr "triem ferwiderje" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuner ynstellingen" + # #, fuzzy msgid "Delete all the text" @@ -3925,6 +3939,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Dizze ynstellingen aktief meitsje" + msgid "Delete the selected files or directories" msgstr "" @@ -5122,6 +5141,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "bewurkjen boeket út" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Tuner ynstellingen" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5741,6 +5765,11 @@ msgstr "Ofrûn" msgid "Finished configuring your network" msgstr "Klear mei ynstellen fan it netwurk" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Klear mei it opnei starten fan it netwurk" + # msgid "Finished restarting your network" msgstr "Klear mei it opnei starten fan it netwurk" @@ -10174,10 +10203,6 @@ msgstr "Druk OK op of ôfstandsbestjinning om fierder te gean." msgid "Press OK to activate the selected %s skin." msgstr "Druk Ok om ynstellingen aktief te meitsjen." -# -msgid "Press OK to activate the settings." -msgstr "Druk Ok om ynstellingen aktief te meitsjen." - # msgid "Press OK to edit the settings." msgstr "Druk OK om dizze ynstellingen te bewurkjen" @@ -10236,6 +10261,11 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Druk Ok om ynstellingen aktief te meitsjen." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/gl.po b/po/gl.po index e5de68b36d..fe741936a8 100644 --- a/po/gl.po +++ b/po/gl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2020-12-27 12:25+0100\n" "Last-Translator: Luis A. Martínez \n" "Language-Team: LAMS\n" @@ -1407,6 +1407,15 @@ msgstr "Seguro que queres saír deste asistente?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Seguro que queres saír deste asistente?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Seguro que queres activar esta configuración de rede?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3716,6 +3725,10 @@ msgstr "Borrar entrada" msgid "Delete Image" msgstr "Borrar imaxe" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configuración do sintonizador" + # msgid "Delete all the text" msgstr "Borrar todo o texto" @@ -3770,6 +3783,11 @@ msgstr "Borrar o carácter á esquerda do cursor de texto" msgid "Delete the character under the text cursor" msgstr "Eliminar o carácter debaixo do cursor de texto" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Activar a configuración actual" + msgid "Delete the selected files or directories" msgstr "" @@ -4917,6 +4935,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuración da lista de películas" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5489,6 +5512,11 @@ msgstr "Rematado" msgid "Finished configuring your network" msgstr "Rematou a configuración da rede" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Rematou o reinicio da rede" + # msgid "Finished restarting your network" msgstr "Rematou o reinicio da rede" @@ -9672,10 +9700,6 @@ msgstr "Preme OK no mando a distancia para continuar." msgid "Press OK to activate the selected %s skin." msgstr "Preme OK para activar a skin %s seleccionada." -# -msgid "Press OK to activate the settings." -msgstr "Preme OK para activar a configuración." - # msgid "Press OK to edit the settings." msgstr "Preme OK para editar a configuración." @@ -9732,6 +9756,11 @@ msgstr "Preme OK para alternar a selección." msgid "Press OK, save and exit..." msgstr "Preme OK, gardar e saír…" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Preme OK para activar a configuración." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Preme ou selecciona o botón e a continuación preme ‘OK’ para axuntar a función." diff --git a/po/he.po b/po/he.po index 157034d412..d9c0ce106d 100644 --- a/po/he.po +++ b/po/he.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2012-03-08 10:40+0330\n" "Last-Translator: \n" "Language-Team: Arabic \n" @@ -1387,6 +1387,14 @@ msgstr "? האם אתה מעוניין לצאת מהאשף" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "? האם אתה מעוניין לצאת מהאשף" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"? האם אתה מעוניין להפעיל את הגדרות הרשת האלו\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3625,6 +3633,10 @@ msgstr "מחק רשומה" msgid "Delete Image" msgstr "מחק קובץ" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuner הגדרת" + #, fuzzy msgid "Delete all the text" msgstr "delete playlist entry" @@ -3676,6 +3688,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "activate current configuration" + msgid "Delete the selected files or directories" msgstr "" @@ -4792,6 +4808,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "end bouquet edit" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Tuner הגדרת" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5364,6 +5384,10 @@ msgstr "הסתיים" msgid "Finished configuring your network" msgstr "הגדרת הרשת הסתיימה" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "פעולת איתחול הרשת הסתיימה" + msgid "Finished restarting your network" msgstr "פעולת איתחול הרשת הסתיימה" @@ -9517,10 +9541,6 @@ msgstr " על השלט על מנת להמשיך OK לחץ " msgid "Press OK to activate the selected %s skin." msgstr "Press OK to activate the selected skin." -# -msgid "Press OK to activate the settings." -msgstr "Press OK to activate the settings." - msgid "Press OK to edit the settings." msgstr "Press OK to edit the settings." @@ -9570,6 +9590,11 @@ msgstr "Press OK to toggle the selection." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Press OK to activate the settings." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/hr.po b/po/hr.po index a969231c70..aacbf2fc52 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2020-03-03 08:50+0100\n" "Last-Translator: Željko \n" "Language-Team: Željko\n" @@ -1440,6 +1440,15 @@ msgstr "" "Želite li stvarno vratiti sljedeću\n" "sigurnosnu kopiju:\n" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Želite li stvarno vratiti sljedeću\n" +"sigurnosnu kopiju:\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3789,6 +3798,11 @@ msgstr "Obriši unos" msgid "Delete Image" msgstr "Brisanje neuspješno!" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfiguracija Tunera" + # #, fuzzy msgid "Delete all the text" @@ -3847,6 +3861,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Konfiguracija Tunera" + msgid "Delete the selected files or directories" msgstr "" @@ -5025,6 +5044,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "završi editiranje paketa" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Konfiguracija Tunera" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5640,6 +5664,11 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Konfiguracija Tunera" + # msgid "Finished restarting your network" msgstr "" @@ -9981,10 +10010,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "Pritisnite OK za aktiviranje postavki." -# -msgid "Press OK to activate the settings." -msgstr "Pritisnite OK za aktiviranje postavki." - # msgid "Press OK to edit the settings." msgstr "" @@ -10043,6 +10068,11 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Pritisnite OK za aktiviranje postavki." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/hu.po b/po/hu.po index c3f5404442..8dbd3a8d7d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2020-05-13 21:36+0200\n" "Last-Translator: mcfly82\n" "Language-Team: mcfly82 & wysless\n" @@ -1299,6 +1299,14 @@ msgstr "Biztos benne, hogy kilép a Varázslóból?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Biztos benne, hogy kilép a Varázslóból?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Biztos benne, hogy aktiválni kívánja ezt a hálózati konfigurációt?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3457,6 +3465,10 @@ msgstr "Mozgás" msgid "Delete Image" msgstr "Törölt image" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuner beállítások" + #, fuzzy msgid "Delete all the text" msgstr "Minden szöveg törlése" @@ -3505,6 +3517,10 @@ msgstr "A kurzortól balra lévő karakter törlése" msgid "Delete the character under the text cursor" msgstr "A kurzor alatti karakter törlése" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktuális konfiguráció aktiválása" + msgid "Delete the selected files or directories" msgstr "" @@ -4563,6 +4579,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "bouquet módosítás vége" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Fájllista konfigurációja" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5110,6 +5130,10 @@ msgstr "Kész" msgid "Finished configuring your network" msgstr "A hálózati beállítás befejeződött" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "A hálózati kapcsolat újraindítása befejeződött" + msgid "Finished restarting your network" msgstr "A hálózati kapcsolat újraindítása befejeződött" @@ -8995,9 +9019,6 @@ msgstr "Nyomja le az OK gombot a távirányítón a folytatáshoz." msgid "Press OK to activate the selected %s skin." msgstr "Nyomja le az OK gombot az új skin aktiválásához." -msgid "Press OK to activate the settings." -msgstr "Az OK gombbal aktiválhatja a beállításokat." - msgid "Press OK to edit the settings." msgstr "Az OK gombbal módosíthatja a beállításokat." @@ -9045,6 +9066,10 @@ msgstr "Nyomja le az OK gombot a jelölés változtatásához." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Az OK gombbal aktiválhatja a beállításokat." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/id.po b/po/id.po index bf02392bc2..356ab1eb8a 100644 --- a/po/id.po +++ b/po/id.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: \n" "Last-Translator: Budiarno\n" "Language-Team: \n" @@ -1283,6 +1283,14 @@ msgstr "Anda yakin ingin keluar dari wizard ini?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Anda yakin ingin keluar dari wizard ini?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Anda yakin akan mengaktifkan setelan jaringan ini?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3423,6 +3431,10 @@ msgstr "Hapus entri" msgid "Delete Image" msgstr "Hapus pewaktu" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Penyetelan..." + #, fuzzy msgid "Delete all the text" msgstr "Hapus entri daftar putar" @@ -3469,6 +3481,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktifkan setelan saat ini" + msgid "Delete the selected files or directories" msgstr "" @@ -4525,6 +4541,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "akhiri ubah buket" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Movie list configuration" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5074,6 +5094,10 @@ msgstr "Finished" msgid "Finished configuring your network" msgstr "Finished configuring your network" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Finished restarting your network" + msgid "Finished restarting your network" msgstr "Finished restarting your network" @@ -8904,9 +8928,6 @@ msgstr "Tekan OK pada remote kontrol anda untuk melanjutkan." msgid "Press OK to activate the selected %s skin." msgstr "Tekan OK untuk mengaktifkan tampilan." -msgid "Press OK to activate the settings." -msgstr "Tekan OK untuk mengaktifkan pengaturan." - msgid "Press OK to edit the settings." msgstr "Tekan OK untuk merubah pengaturan." @@ -8954,6 +8975,10 @@ msgstr "Press OK to toggle the selection." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Tekan OK untuk mengaktifkan pengaturan." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/is.po b/po/is.po index 3be8dad68b..932a9ebd41 100644 --- a/po/is.po +++ b/po/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2011-05-07 12:23+0200\n" "Last-Translator: Baldur \n" "Language-Team: Polar Team/LT Team \n" @@ -1430,6 +1430,14 @@ msgstr "Ertu viss um að þú viljir hætta í ráðgjafanum?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Ertu viss um að þú viljir hætta í ráðgjafanum?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Ertu viss um að þú viljir virkja þessa net stillingu?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3688,6 +3696,11 @@ msgstr "Eyða innslætti" msgid "Delete Image" msgstr "eyða skrá" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Stilling móttakara" + # #, fuzzy msgid "Delete all the text" @@ -3746,6 +3759,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "virkja núverandi stillingar" + msgid "Delete the selected files or directories" msgstr "" @@ -4927,6 +4945,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "hætta að breyta fléttu" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Handvirk stilling" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5528,6 +5550,11 @@ msgstr "Búið" msgid "Finished configuring your network" msgstr "Búið að stilla netkerfið" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Búið að endurræsa netkerfið" + # msgid "Finished restarting your network" msgstr "Búið að endurræsa netkerfið" @@ -9936,10 +9963,6 @@ msgstr "Ýttu á OK á fjarstýringunni til að halda áfram." msgid "Press OK to activate the selected %s skin." msgstr "Ýttu á OK til að velja valið skinn." -# -msgid "Press OK to activate the settings." -msgstr "Ýtið á OK til að virkja stillingar." - # msgid "Press OK to edit the settings." msgstr "Ýttu á OK til að breyta stillingum." @@ -9998,6 +10021,11 @@ msgstr "Ýttu á OK til að velja á milli." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Ýtið á OK til að virkja stillingar." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/it.po b/po/it.po index 74efbe589a..b0c54ea66c 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2021-11-30 12:39+0100\n" "Last-Translator: teamblue-e2 \n" "Language-Team: www.linsat.net \n" @@ -1399,6 +1399,15 @@ msgstr "Uscire da questa configurazione guidata?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Sei sicuro di voler ricaricare i dati EPG da:\n" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Attivare queste impostazioni di rete?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3695,6 +3704,11 @@ msgstr "Elimina 1 elemento" msgid "Delete Image" msgstr "Elimina immagine" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configurazione di OpenWebif" + # msgid "Delete all the text" msgstr "Elimina tutto il testo" @@ -3748,6 +3762,11 @@ msgstr "Elimina il carattere a sinistra del cursore del testo" msgid "Delete the character under the text cursor" msgstr "Elimina il carattere sotto il cursore del testo" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Attivare Le impostazioni correnti" + msgid "Delete the selected files or directories" msgstr "Elimina i file o le directory selezionati" @@ -4867,6 +4886,10 @@ msgstr "Errore nella lettura di bouquets.radio" msgid "Error reading bouquets.tv" msgstr "Errore di lettura di bouquets.tv" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Impostazioni elenco registrazioni" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5449,6 +5472,11 @@ msgstr "Terminato" msgid "Finished configuring your network" msgstr "La configurazione di rete è terminata" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Riavvio rete terminato" + # msgid "Finished restarting your network" msgstr "Riavvio rete terminato" @@ -9548,10 +9576,6 @@ msgstr "Ok >> continuare." msgid "Press OK to activate the selected %s skin." msgstr "Premere OK per attivare la pelle selezionata %s." -# -msgid "Press OK to activate the settings." -msgstr "Ok >> attivare configurazione." - # msgid "Press OK to edit the settings." msgstr "Ok >> modificare la configurazione." @@ -9606,6 +9630,11 @@ msgstr "Ok >> commutare la selezione." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Ok >> attivare configurazione." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Premere o selezionare il pulsante e poi premere 'OK' per allegare la funzione." diff --git a/po/ku.po b/po/ku.po index 6e803f752a..4572df3e42 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2013-04-22 04:29+0330\n" "Last-Translator: dimili21\n" "Language-Team: \n" @@ -1301,6 +1301,14 @@ msgstr "Are you sure you want to exit this wizard?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Are you sure you want to exit this wizard?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Are you sure you want to activate this network configuration?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3458,6 +3466,10 @@ msgstr "Delete entry" msgid "Delete Image" msgstr "Delete file" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Çékirina Tuner " + #, fuzzy msgid "Delete all the text" msgstr "Delete playlist entry" @@ -3504,6 +3516,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Ti dixwazi aktif biki" + msgid "Delete the selected files or directories" msgstr "" @@ -4562,6 +4578,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "end bouquet edit" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Movie list configuration" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5104,6 +5124,10 @@ msgstr "Finished" msgid "Finished configuring your network" msgstr "Finished configuring your network" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Finished restarting your network" + msgid "Finished restarting your network" msgstr "Finished restarting your network" @@ -8988,9 +9012,6 @@ msgstr "Press OK on your remote control to continue." msgid "Press OK to activate the selected %s skin." msgstr "Press OK to activate the selected skin." -msgid "Press OK to activate the settings." -msgstr "Press OK to activate the settings." - msgid "Press OK to edit the settings." msgstr "Press OK to edit the settings." @@ -9038,6 +9059,10 @@ msgstr "Press OK to toggle the selection." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Press OK to activate the settings." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/lt.po b/po/lt.po index 4db2d75593..21a0219ac1 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2020-02-29 08:52+0200\n" "Last-Translator: Audronis Grincevicius \n" "Language-Team: Adga (C) \n" @@ -1311,6 +1311,14 @@ msgstr "Jūs esate įsitikinęs, kad norite išjungti šį vedlį?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Jūs esate įsitikinęs, kad norite išjungti šį vedlį?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Jūs esate įsitikinęs, kad jūs norite aktyvuoti šią tinklo konfigūraciją?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3481,6 +3489,10 @@ msgstr "Trinti užduotį" msgid "Delete Image" msgstr "trinti failą" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Imtuvo konfigūravimas" + #, fuzzy msgid "Delete all the text" msgstr "trinti įrašą iš grojaraščio " @@ -3530,6 +3542,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "aktyvuokite dabartinę konfigūraciją" + msgid "Delete the selected files or directories" msgstr "" @@ -4588,6 +4604,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "baigti paketo redagavimą" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Rankinė konfigūracija" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5149,6 +5169,10 @@ msgstr "Baigtas" msgid "Finished configuring your network" msgstr "Baigtas jūsų tinklo konfigūravimas" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Baigtas jūsų tinklo paleidimas iš naujo" + msgid "Finished restarting your network" msgstr "Baigtas jūsų tinklo paleidimas iš naujo" @@ -9079,9 +9103,6 @@ msgstr "Spauskite OK savo valdymo pulte ir tęskite." msgid "Press OK to activate the selected %s skin." msgstr "Spauskite OK, kad aktyvuoti pasirinktą temą." -msgid "Press OK to activate the settings." -msgstr "Spauskite OK norėdami aktyvuoti nustatymus" - msgid "Press OK to edit the settings." msgstr "Spauskite OK ir redaguokite nustatymus." @@ -9130,6 +9151,10 @@ msgstr "Spauskite OK dėl pasirinkimo." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Spauskite OK norėdami aktyvuoti nustatymus" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/lv.po b/po/lv.po index ee5c2754de..a2811597ea 100644 --- a/po/lv.po +++ b/po/lv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2014-11-12 00:49+0200\n" "Last-Translator: Taapat \n" "Language-Team: Taapat \n" @@ -1318,6 +1318,14 @@ msgstr "Vai tiešām vēlaties iziet no šī veidņa?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Vai tiešām vēlaties iziet no šī veidņa?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Vai tiešām vēlaties aktivizēt šo tīkla konfigurāciju?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3477,6 +3485,10 @@ msgstr "Dzēst ierakstu " msgid "Delete Image" msgstr "Dzēst failu" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Uztvērēja konfigurācija" + #, fuzzy msgid "Delete all the text" msgstr "Dzēst repertuāra ierakstu" @@ -3523,6 +3535,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivizēt pašreizējo konfigurāciju" + msgid "Delete the selected files or directories" msgstr "" @@ -4584,6 +4600,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "beigt buķešu rediģēšanu" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Filmu saraksta konfigurācija" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5140,6 +5160,10 @@ msgstr "Pabeigts" msgid "Finished configuring your network" msgstr "Tīkla konfigurēšana pabeigta" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Tīkla pārstartēšana pabeigta" + msgid "Finished restarting your network" msgstr "Tīkla pārstartēšana pabeigta" @@ -9025,9 +9049,6 @@ msgstr "Spiediet OK uz tālvadības pults, lai turpinātu." msgid "Press OK to activate the selected %s skin." msgstr "Spiediet OK lai aktivizētu izvēlēto ādiņu." -msgid "Press OK to activate the settings." -msgstr "Spiediet OK, lai aktivizētu iestatījumus." - msgid "Press OK to edit the settings." msgstr "Spiediet OK, lai rediģētu iestatījumus." @@ -9075,6 +9096,10 @@ msgstr "Nospiediet OK, lai pārslēgtu izvēli." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Spiediet OK, lai aktivizētu iestatījumus." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/mk.po b/po/mk.po index 7738bfb9e7..ef9ace3a79 100644 --- a/po/mk.po +++ b/po/mk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2021-02-19 14:49+0100\n" "Last-Translator: \n" "Language-Team: Muzoss-VELEBRDO\n" @@ -1262,6 +1262,14 @@ msgstr "Дали сте сигурни дека сакате да излезет msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Дали сте сигурни дека сакате да излезете од овој водич?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Дали сте сигурни дека сакате да ја активирате оваа мрежна конфигурација?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3351,6 +3359,10 @@ msgstr "Избришете го записот" msgid "Delete Image" msgstr "Избриши имиџ" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Конфигурација на тјунер" + msgid "Delete all the text" msgstr "Избришете го целиот текст" @@ -3397,6 +3409,10 @@ msgstr "Избришете го карактерот лево од курсор msgid "Delete the character under the text cursor" msgstr "Избришете го знакот под курсорот" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Активирајте ја тековната конфигурација" + msgid "Delete the selected files or directories" msgstr "" @@ -4424,6 +4440,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Поставки за списокот со филмови" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4950,6 +4970,10 @@ msgstr "Завршено" msgid "Finished configuring your network" msgstr "Конфигурацијата на мрежата е завршена" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Рестартирањето на мрежата е завршено" + msgid "Finished restarting your network" msgstr "Рестартирањето на мрежата е завршено" @@ -8706,9 +8730,6 @@ msgstr "Притиснете ОК за да продолжите." msgid "Press OK to activate the selected %s skin." msgstr "Притиснете ОК за да го активирате маркираниот Скин% s." -msgid "Press OK to activate the settings." -msgstr "Притиснете OK за да ги активирате поставките." - msgid "Press OK to edit the settings." msgstr "Притиснете OK за да ги уредите поставките." @@ -8754,6 +8775,10 @@ msgstr "Притиснете OK за да го вклучите изборот." msgid "Press OK, save and exit..." msgstr "Притиснете OK, зачувајте и излезете ..." +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Притиснете OK за да ги активирате поставките." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Притиснете или изберете го копчето и потоа притиснете \"OK\" за да ја вклучите функцијата." diff --git a/po/nb.po b/po/nb.po index 95dc1502f6..f20117ba90 100644 --- a/po/nb.po +++ b/po/nb.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-12-06 15:54+0100\n" "Last-Translator: GeirJ \n" "Language-Team: GeirJ\n" @@ -1395,6 +1395,14 @@ msgstr "Vil du avslutte veiviseren?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Vil du avslutte veiviseren?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Vil du bruke dette nettverksoppsettet?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3744,6 +3752,10 @@ msgstr "Slett tidtaker" msgid "Delete Image" msgstr "Slett timer" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tuner innstilling" + # #, fuzzy msgid "Delete all the text" @@ -3799,6 +3811,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktiver gjeldende konfigurasjon" + msgid "Delete the selected files or directories" msgstr "" @@ -4975,6 +4992,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "avslutt kanalliste redigering" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Innstilling for opptaksliste" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5594,6 +5615,10 @@ msgstr "Ferdig" msgid "Finished configuring your network" msgstr "Nettverksoppsettet er konfigurert" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Nettverket ble startet på nytt" + msgid "Finished restarting your network" msgstr "Nettverket ble startet på nytt" @@ -9891,9 +9916,6 @@ msgstr "Trykk OK for å fortsette." msgid "Press OK to activate the selected %s skin." msgstr "Trykk OK for å ta i bruk det valgte skin." -msgid "Press OK to activate the settings." -msgstr "Trykk OK for å aktivere instillingene" - msgid "Press OK to edit the settings." msgstr "Trykk OK for å endre innstillinger." @@ -9943,6 +9965,10 @@ msgstr "Trykk OK for å veksle mellom valgene." msgid "Press OK, save and exit..." msgstr "Lagre og avslutt" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Trykk OK for å aktivere instillingene" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/nl.po b/po/nl.po index c3d0372c2e..1de0268bcd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: \n" "Last-Translator: Frenske \n" "Language-Team: PLiteam \n" @@ -1303,6 +1303,14 @@ msgstr "Wilt u deze wizard afsluiten?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Wilt u deze wizard afsluiten?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Wilt u deze netwerkconfiguratie nu activeren?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3629,6 +3637,10 @@ msgstr "Verwijder invoer" msgid "Delete Image" msgstr "Verwijder timer" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tunerconfiguratie" + #, fuzzy msgid "Delete all the text" msgstr "Verwijder een item uit de afspeellijst" @@ -3675,6 +3687,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Activeer de huidige configuratie" + msgid "Delete the selected files or directories" msgstr "" @@ -4744,6 +4760,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "Bouquet bewerken stoppen" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuratie van de opnamelijst" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5300,6 +5320,10 @@ msgstr "Voltooid" msgid "Finished configuring your network" msgstr "Klaar met het configureren van uw netwerk" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Herstarten van uw netwerk is voltooid" + msgid "Finished restarting your network" msgstr "Herstarten van uw netwerk is voltooid" @@ -9201,9 +9225,6 @@ msgstr "Druk OK op uw afstandsbediening om verder te gaan." msgid "Press OK to activate the selected %s skin." msgstr "Druk op OK om de geselecteerde skin te activeren." -msgid "Press OK to activate the settings." -msgstr "Druk op OK om op te slaan" - msgid "Press OK to edit the settings." msgstr "Druk op OK om te wijzigen." @@ -9252,6 +9273,10 @@ msgstr "Druk op OK om de selectie te de/activeren." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Druk op OK om op te slaan" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/nn.po b/po/nn.po index c4ec853e0c..b4862b4133 100644 --- a/po/nn.po +++ b/po/nn.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2013-10-23 19:15+0100\n" "Last-Translator: andy1 \n" "Language-Team: none\n" @@ -1366,6 +1366,14 @@ msgstr "Vil du avslutte veiviseren?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Vil du avslutte veiviseren?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Vil du bruke dette nettverksoppsettet?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3668,6 +3676,11 @@ msgstr "Slette tidtaker" msgid "Delete Image" msgstr "Slette fil" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfigurasjon..." + # #, fuzzy msgid "Delete all the text" @@ -3723,6 +3736,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivere gjeldende konfigurasjon" + msgid "Delete the selected files or directories" msgstr "" @@ -4874,6 +4892,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "avslutt redigering av kanalliste" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Innstilling for opptaksliste" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5451,6 +5473,10 @@ msgstr "Ferdig" msgid "Finished configuring your network" msgstr "Nettverksoppsettet er konfigurert" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Nettverket ble startet på nytt" + msgid "Finished restarting your network" msgstr "Nettverket ble startet på nytt" @@ -9646,9 +9672,6 @@ msgstr "Trykk OK for å fortsette." msgid "Press OK to activate the selected %s skin." msgstr "Trykk OK for å ta i bruk det valgte skin." -msgid "Press OK to activate the settings." -msgstr "Trykk OK for å aktivere instillingene" - msgid "Press OK to edit the settings." msgstr "Trykk OK for å endre innstillinger." @@ -9696,6 +9719,10 @@ msgstr "Trykk OK for å veksle mellom valgene." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Trykk OK for å aktivere instillingene" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/pl.po b/po/pl.po index fa7926deaa..80d836a064 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-12-03 20:02+0100\n" "Last-Translator: blzr \n" "Language-Team: \n" @@ -1481,6 +1481,15 @@ msgstr "Jesteś pewien, że chcesz wyjść?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Jesteś pewien, że chcesz wyjść?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Czy chcesz aktywować konfigurację sieci?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3912,6 +3921,11 @@ msgstr "Skasuj wpis" msgid "Delete Image" msgstr "Usuń timer" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfiguracja tunera" + # #, fuzzy msgid "Delete all the text" @@ -3967,6 +3981,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktywuj aktualną konfigurację" + msgid "Delete the selected files or directories" msgstr "" @@ -5201,6 +5220,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "Koniec edycji bukietów" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Konfiguracja listy kanałów" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5825,6 +5848,10 @@ msgstr "Skończone" msgid "Finished configuring your network" msgstr "Zakończono konfigurowanie sieci" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Zakończono restert sieci" + msgid "Finished restarting your network" msgstr "Zakończono restert sieci" @@ -10306,10 +10333,6 @@ msgstr "Wciśnij OK, aby kontynuować." msgid "Press OK to activate the selected %s skin." msgstr "Wciśnij OK, aby aktywować wybrany skin." -# -msgid "Press OK to activate the settings." -msgstr "Wciśnij OK, aby aktywować ustawienia" - # msgid "Press OK to edit the settings." msgstr "Aby edytować ustawienia, wciśnij OK." @@ -10371,6 +10394,11 @@ msgstr "Wciśnij OK, aby zmienić wybór" msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Wciśnij OK, aby aktywować ustawienia" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/pt.po b/po/pt.po index 206fe936a4..6ad7a39d2f 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2014-12-15 19:38-0000\n" "Last-Translator: Phenom \n" "Language-Team: Muaitai \n" @@ -1472,6 +1472,15 @@ msgstr "Tem a certeza que deseja sair deste assistente?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Tem a certeza que deseja sair deste assistente?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Tem a certeza que deseja activar esta configuração de rede?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3909,6 +3918,11 @@ msgstr "Eliminar entrada" msgid "Delete Image" msgstr "Eliminar agendamento" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configuração do sintonizador" + # #, fuzzy msgid "Delete all the text" @@ -3966,6 +3980,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Activar configuração actual" + msgid "Delete the selected files or directories" msgstr "" @@ -5171,6 +5190,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "terminar edição de Bouquet" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configuração da Lista de Vídeos" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5795,6 +5818,11 @@ msgstr "Concluído" msgid "Finished configuring your network" msgstr "Terminou a configuração de rede" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Terminou a reinicialização de rede" + # msgid "Finished restarting your network" msgstr "Terminou a reinicialização de rede" @@ -10263,10 +10291,6 @@ msgstr "Prima OK para continuar." msgid "Press OK to activate the selected %s skin." msgstr "Prima OK para activar o tema seleccionado." -# -msgid "Press OK to activate the settings." -msgstr "Prima OK para activar as definições." - # msgid "Press OK to edit the settings." msgstr "Prima OK para editar as definições." @@ -10326,6 +10350,11 @@ msgstr "Prima OK para alterar a selecção." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Prima OK para activar as definições." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 3fc1d784a5..5d0cdb1dbc 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2013-10-20 19:13-0300\n" "Last-Translator: Diogo \n" "Language-Team: Traduzido por Frank Viana \n" @@ -1289,6 +1289,14 @@ msgstr "Sair do assistente?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Sair do assistente?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Ativar esta configuração de rede?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3441,6 +3449,10 @@ msgstr "Remover item" msgid "Delete Image" msgstr "Remover arquivo" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configurar tuner" + #, fuzzy msgid "Delete all the text" msgstr "Remover item da lista de reprodução" @@ -3487,6 +3499,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Ativar configuração atual" + msgid "Delete the selected files or directories" msgstr "" @@ -4542,6 +4558,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "Salvar modificações" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configurar lista de vídeos" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5086,6 +5106,10 @@ msgstr "Pronto" msgid "Finished configuring your network" msgstr "Configuração de rede finalizada" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Rede reiniciada" + msgid "Finished restarting your network" msgstr "Rede reiniciada" @@ -8969,9 +8993,6 @@ msgstr "Pressione OK para continuar." msgid "Press OK to activate the selected %s skin." msgstr "Pressione OK para ativar o tema selecionado." -msgid "Press OK to activate the settings." -msgstr "Pressione OK para ativar as configurações." - msgid "Press OK to edit the settings." msgstr "Pressione OK para editar as configurações." @@ -9019,6 +9040,10 @@ msgstr "Pressione OK para alternar a seleção." msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Pressione OK para ativar as configurações." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/ro.po b/po/ro.po index 671cd9656f..701261d857 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2010-03-09 21:03+0100\n" "Last-Translator: \n" "Language-Team: HDTV ROMANIA(superonic,costel_mbc,neutrin,otheitis,cipy_1982,neutrin,runcanion)\n" @@ -1307,6 +1307,14 @@ msgstr "" "Esti sigur ca vrei sa stergi\n" "urmarire backup:\n" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Esti sigur ca vrei sa activezi asta configuratia de retea?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3462,6 +3470,10 @@ msgstr "Sterge articol" msgid "Delete Image" msgstr "sterge file" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Configurare tuner" + #, fuzzy msgid "Delete all the text" msgstr "sterge intrare playlist" @@ -3511,6 +3523,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "activeaza configurarea curenta" + msgid "Delete the selected files or directories" msgstr "" @@ -4565,6 +4581,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "sfarsit editare bouquet" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Configurare tuner" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5111,6 +5131,10 @@ msgstr "Finalizat" msgid "Finished configuring your network" msgstr "S-a finalizat configurarea retelei dvs" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Reteaua dvs a fost repornita" + msgid "Finished restarting your network" msgstr "Reteaua dvs a fost repornita" @@ -8998,9 +9022,6 @@ msgstr "Va rugam apasati OK de pe telecomanda pentru a continua" msgid "Press OK to activate the selected %s skin." msgstr "Apasati OK pentru a activa setarile" -msgid "Press OK to activate the settings." -msgstr "Apasati OK pentru a activa setarile" - msgid "Press OK to edit the settings." msgstr "Apasati OK pentru a edita setarile." @@ -9049,6 +9070,10 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Apasati OK pentru a activa setarile" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/ru.po b/po/ru.po index 74a78ce86c..89d7b09043 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-07-25 17:52+0300\n" "Last-Translator: Dimitrij \n" "Language-Team: openPLi Dimitrij\n" @@ -1311,6 +1311,14 @@ msgstr "Вы уверены, что хотите выйти из этого ма msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Вы уверены, что хотите выйти из этого мастера?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Вы уверены, что хотите активировать эту конфигурацию сети?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3469,6 +3477,10 @@ msgstr "удалить выбранное" msgid "Delete Image" msgstr "удалить файл" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Настройка тюнера" + #, fuzzy msgid "Delete all the text" msgstr "удалить запись из плейлиста" @@ -3515,6 +3527,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Активировать текущие настройки" + msgid "Delete the selected files or directories" msgstr "" @@ -4574,6 +4590,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "закончить редактирование букета" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Конфигурация списка видео" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5129,6 +5149,10 @@ msgstr "Завершено" msgid "Finished configuring your network" msgstr "Настройка сети закончена" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Перезагрузка вашей сети завершена" + msgid "Finished restarting your network" msgstr "Перезагрузка вашей сети завершена" @@ -9011,9 +9035,6 @@ msgstr "Нажмите OK на пульте, чтобы продолжить." msgid "Press OK to activate the selected %s skin." msgstr "Нажмите OK для активации выбранного скина." -msgid "Press OK to activate the settings." -msgstr "Нажмите OK для активации настроек." - msgid "Press OK to edit the settings." msgstr "Нажмите OK, чтобы изменить настройки." @@ -9061,6 +9082,10 @@ msgstr "Нажмите ОК для подтверждения или отмен msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Нажмите OK для активации настроек." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/sk.po b/po/sk.po index cf2b863ca8..51643d49ae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2023-10-27 20:52+0200\n" "Last-Translator: Andrej Tobola \n" "Language-Team: \n" @@ -1255,6 +1255,14 @@ msgstr "Naozaj chcete ukončiť tohto sprievodcu?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Ste si istí, že chcete znovu načítať údaje EPG z:\n" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Naozaj chcete aktivovať túto konfiguráciu siete?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3289,6 +3297,10 @@ msgstr "Odstrániť 1 prvok" msgid "Delete Image" msgstr "Vymazať image" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfigurácia OpenWebif" + msgid "Delete all the text" msgstr "Vymazať všetok text" @@ -3333,6 +3345,10 @@ msgstr "Vymazať znak vľavo od kurzora" msgid "Delete the character under the text cursor" msgstr "Vymazať znak pod kurzorom" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Zapnúť súčasnú konfiguráciu" + msgid "Delete the selected files or directories" msgstr "Odstránenie vybraných súborov alebo adresárov" @@ -4310,6 +4326,10 @@ msgstr "Chyba pri čítaní bouquets.radio" msgid "Error reading bouquets.tv" msgstr "Chyba pri čítaní bouquets.tv" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Konfigurácia zoznamu filmov" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4822,6 +4842,10 @@ msgstr "Ukončené" msgid "Finished configuring your network" msgstr "Nastavenie siete je skončené" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Reštartovanie siete je skončené" + msgid "Finished restarting your network" msgstr "Reštartovanie siete je skončené" @@ -8407,9 +8431,6 @@ msgstr "Ak chcete pokračovať, stlačte tlačidlo OK na diaľkovom ovládači." msgid "Press OK to activate the selected %s skin." msgstr "Stlačením OK aktivujete zvolený vzhľad %s." -msgid "Press OK to activate the settings." -msgstr "Stlačením OK aktivujte nastavenia." - msgid "Press OK to edit the settings." msgstr "Stlačte OK pre zmenu nastavení." @@ -8454,6 +8475,10 @@ msgstr "Stlačte OK pre prepnutie výberu." msgid "Press OK, save and exit..." msgstr "Stlačte OK, uložiť a ukončiť..." +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Stlačením OK aktivujte nastavenia." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Stlačte alebo zvolte tlačidlo a potom stlačte 'OK' pre funkciu pripojenia." diff --git a/po/sl.po b/po/sl.po index e8e2c29611..5650524be9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2015-08-30 09:00+0200\n" "Last-Translator: Taykun345 \n" "Language-Team: Satnigmo \n" @@ -1506,6 +1506,15 @@ msgstr "Ste prepričani, da želite zapreti čarovnik?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Ste prepričani, da želite zapreti čarovnik?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Ste prepričani da želite aktivirati te omrežne nastavitve?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3929,6 +3938,11 @@ msgstr "Izbris vnosa" msgid "Delete Image" msgstr "Izbris časovnika" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Nastavitev kanalnikov" + # #, fuzzy msgid "Delete all the text" @@ -3984,6 +3998,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktiviranje trenutnih nastavitev" + msgid "Delete the selected files or directories" msgstr "" @@ -5229,6 +5248,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "Konec urejanja paketa" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Nastavitve seznama posnetkov" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5855,6 +5878,10 @@ msgstr "Zaključeno" msgid "Finished configuring your network" msgstr "Nastavljanje omrežja je zaključeno!" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Ponovni zagon omrežja je opravljen" + msgid "Finished restarting your network" msgstr "Ponovni zagon omrežja je opravljen" @@ -10312,10 +10339,6 @@ msgstr "Za nadaljevanje pritisnite OK." msgid "Press OK to activate the selected %s skin." msgstr "Za aktiviranje izbrane predloge pritisnite OK." -# -msgid "Press OK to activate the settings." -msgstr "Za aktiviranje nastavitev pritisnite OK." - # msgid "Press OK to edit the settings." msgstr "Za spreminjanje nastavitev pritisnite OK." @@ -10377,6 +10400,11 @@ msgstr "Za preklapljanje med izbiro pritisnite tipko OK." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Za aktiviranje nastavitev pritisnite OK." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/sr.po b/po/sr.po index 42bd6a2cf7..19ca47b257 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2011-04-14 00:02+0200\n" "Last-Translator: majevica \n" "Language-Team: veselin & majevica CRNABERZA \n" @@ -1489,6 +1489,15 @@ 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" msgstr "Da li ste sigurni da želite izaći iz ovog čarobnjaka?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Da li ste sigurni da želite aktivirati ovu mrežnu konfiguraciju?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3928,6 +3937,11 @@ msgstr "Obriši unos" msgid "Delete Image" msgstr "Obriši datoteku" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Konfiguracija tjunera" + # #, fuzzy msgid "Delete all the text" @@ -3986,6 +4000,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivirajte aktuelnu konfiguraciju" + msgid "Delete the selected files or directories" msgstr "" @@ -5200,6 +5219,11 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "završi uređivanje buketa" +# +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Konfiguracija tjunera" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5828,6 +5852,11 @@ msgstr "Završeno" msgid "Finished configuring your network" msgstr "Završena konfiguracija vaše mreže" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Završeno je restartovanje vaše mreže" + # msgid "Finished restarting your network" msgstr "Završeno je restartovanje vaše mreže" @@ -10320,10 +10349,6 @@ msgstr "Pritisnite OK na daljinskom upravljaču da nastavite." msgid "Press OK to activate the selected %s skin." msgstr "Pritisnite OK za aktiviranje izabrane maske." -# -msgid "Press OK to activate the settings." -msgstr "Pritisnite OK za aktiviranje postavki." - # msgid "Press OK to edit the settings." msgstr "Pritisnite OK da uredite postavke." @@ -10382,6 +10407,11 @@ msgstr "Pritisnite OK da prebacite izbor." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Pritisnite OK za aktiviranje postavki." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/sv.po b/po/sv.po index eed218286a..5056b65b79 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2017-03-05 13:24+0100\n" "Last-Translator: Magnus Nilsson \n" "Language-Team: \n" @@ -1434,6 +1434,15 @@ 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" msgstr "Är du säker på att du vill avsluta den här guiden?" +# +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Är du säker på att du vill aktivera den här nätverkskonfigurationen?\n" +"\n" + # msgid "" "Are you sure you want to restart your network interfaces?\n" @@ -3830,6 +3839,11 @@ msgstr "Ta bort post" msgid "Delete Image" msgstr "Ta bort fil" +# +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Tunerkonfiguration" + # #, fuzzy msgid "Delete all the text" @@ -3885,6 +3899,11 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +# +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Aktivera nuvarande konfiguration" + msgid "Delete the selected files or directories" msgstr "" @@ -5082,6 +5101,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "avsluta favoritlists editor" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Konfiguration av filmlista" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5691,6 +5714,11 @@ msgstr "Klart" msgid "Finished configuring your network" msgstr "Klar med konfigureringen av ditt nätverk" +# +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Klar med omstarten av ditt nätverk" + # msgid "Finished restarting your network" msgstr "Klar med omstarten av ditt nätverk" @@ -10060,10 +10088,6 @@ msgstr "Tryck OK på din fjärrkontroll för att fortsätta." msgid "Press OK to activate the selected %s skin." msgstr "Tryck OK för aktivera valt utseende." -# -msgid "Press OK to activate the settings." -msgstr "Tryck OK för aktivera inställningarna." - # msgid "Press OK to edit the settings." msgstr "Tryck OK för att ändra inställningar." @@ -10121,6 +10145,11 @@ msgstr "Tryck OK för att växla val." msgid "Press OK, save and exit..." msgstr "" +# +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Tryck OK för aktivera inställningarna." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/th.po b/po/th.po index 68778c841d..957df420a0 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2010-04-08 18:13+0700\n" "Last-Translator: Tony - Thaidreambox\n" "Language-Team: Tony @ Thai Dreambox \n" @@ -1310,6 +1310,14 @@ msgstr "ท่านต้องการที่ออกจากตัวช msgid "Are you sure you want to reload the EPG data from:\n" msgstr "ท่านต้องการที่ออกจากตัวช่วยหรือไม่?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"ท่านจะให้ค่าเครื่อข่ายที่ตั้งใหม่ทำงานหรือไม่\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3472,6 +3480,10 @@ msgstr "ลบรายการ" msgid "Delete Image" msgstr "ลบไฟล์" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "ตั้งค่า Tuner" + #, fuzzy msgid "Delete all the text" msgstr "ลบรายการนี้" @@ -3521,6 +3533,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "สั่งใช้งานการตั้งค่าปัจจุบัน" + msgid "Delete the selected files or directories" msgstr "" @@ -4573,6 +4589,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "จบการแก้ไขกลุ่มรายการ" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "ตั้งค่า Tuner" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5121,6 +5141,10 @@ msgstr "จบการทำงาน" msgid "Finished configuring your network" msgstr "จบการตั้งค่าเครือข่าย" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "ระบบเครือข่ายพร้อมใช้งานแล้ว" + msgid "Finished restarting your network" msgstr "ระบบเครือข่ายพร้อมใช้งานแล้ว" @@ -9033,9 +9057,6 @@ msgstr "กดปุ่ม OK ที่รีโมทเพื่อทำง msgid "Press OK to activate the selected %s skin." msgstr "กดปุ่ม OK เพื่อเริ่มใช้สกินที่เลือกไว้" -msgid "Press OK to activate the settings." -msgstr "กดปุ่ม OK เพื่อเริ่มใช้งาน" - msgid "Press OK to edit the settings." msgstr "กดปุ่ม OK เพื่อแก้ไข" @@ -9084,6 +9105,10 @@ msgstr "กดปุ่ม OK เพื่อเปลี่ยน" msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "กดปุ่ม OK เพื่อเริ่มใช้งาน" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/tr.po b/po/tr.po index 2b82995f5c..a1a7695f2e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue (Apachi70)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2023-10-28 16:49+0200\n" "Last-Translator: Apachi70 (Openatv),(Teamblue) \n" "Language-Team: teamblue@t-online.de(apachi70)\n" @@ -1231,6 +1231,14 @@ msgstr "Sihirbazdan çıkmak istiyor musunuz?" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "EPG verilerini yeniden yüklemek istediğinizden emin misiniz:\n" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Bu ağ yapılandırmasını etkinleştirmek istiyor musunuz?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3265,6 +3273,10 @@ msgstr "1 öğe sil" msgid "Delete Image" msgstr "Image Sil" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "OpenWebif Yapılandırması" + msgid "Delete all the text" msgstr "Tüm metni sil" @@ -3309,6 +3321,10 @@ msgstr "Metin imlecinin solundaki karakteri sil" msgid "Delete the character under the text cursor" msgstr "Metin imlecinin altındaki karakteri sil" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Geçerli yapılandırmayı etkinleştir" + msgid "Delete the selected files or directories" msgstr "Seçilen dosyaları veya dizinleri silin" @@ -4285,6 +4301,10 @@ msgstr "Bouquets.radio okunurken hata oluştu" msgid "Error reading bouquets.tv" msgstr "Bouquets.tv okunurken hata oluştu" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Film Listesi yapılandırması" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4797,6 +4817,10 @@ msgstr "Tamamlandı" msgid "Finished configuring your network" msgstr "Ağ yapılandırması tamamlandı" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Ağ yeniden başlatıldı" + msgid "Finished restarting your network" msgstr "Ağ yeniden başlatıldı" @@ -8379,9 +8403,6 @@ msgstr "Devam etmek için kumandanızın OK tuşuna basın." msgid "Press OK to activate the selected %s skin." msgstr "Arayüzü etkinleştirmek için %s OK tuşuna basın." -msgid "Press OK to activate the settings." -msgstr "Onaylamak için OK tuşuna basın." - msgid "Press OK to edit the settings." msgstr "Düzenlemek için OK tuşuna basın." @@ -8426,6 +8447,10 @@ msgstr "Seçiminde geçiş yapmak için OK tuşuna basın." msgid "Press OK, save and exit..." msgstr "OK tuşuna basın, kaydedin ve çıkın ..." +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Onaylamak için OK tuşuna basın." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Ekleme fonksiyonu için veya düğmesine basınız ve daha sonra 'Tamam'a basınız." diff --git a/po/uk.po b/po/uk.po index e9f2405812..b973bfcd48 100644 --- a/po/uk.po +++ b/po/uk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma2 teamBlue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2016-11-17 12:51+0200\n" "Last-Translator: vovan43, sety , Irkoff \n" "Language-Team: gisclub.tv \n" @@ -1314,6 +1314,14 @@ msgstr "Ви впевнені, що хочете вийти з цього май msgid "Are you sure you want to reload the EPG data from:\n" msgstr "Ви впевнені, що хочете вийти з цього майстра?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" +"Ви впевнені, що хочете активувати цю конфігурацію мережі?\n" +"\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3482,6 +3490,10 @@ msgstr "Видалити вибране" msgid "Delete Image" msgstr "Видалити файл" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Налаштування тюнера" + #, fuzzy msgid "Delete all the text" msgstr "Видалити запис з плейлиста" @@ -3528,6 +3540,10 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Активувати поточні налаштування" + msgid "Delete the selected files or directories" msgstr "" @@ -4591,6 +4607,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "закінчити редагування букета" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Конфігурація списку відео" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -5142,6 +5162,10 @@ msgstr "Завершено" msgid "Finished configuring your network" msgstr "Налаштування мережі закінчена" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Перезавантаження вашої мережі завершена" + msgid "Finished restarting your network" msgstr "Перезавантаження вашої мережі завершена" @@ -9033,9 +9057,6 @@ msgstr "Натисніть OK на пульті, щоб продовжити." msgid "Press OK to activate the selected %s skin." msgstr "Натисніть OK для активації вибраного скіна." -msgid "Press OK to activate the settings." -msgstr "Натисніть OK для активації налаштувань." - msgid "Press OK to edit the settings." msgstr "Натисніть OK, щоб змінити настройки." @@ -9083,6 +9104,10 @@ msgstr "Натисніть ОК для підтвердження або ска msgid "Press OK, save and exit..." msgstr "" +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Натисніть OK для активації налаштувань." + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/vi.po b/po/vi.po index aaecd7aeb1..f67ea9cfd4 100644 --- a/po/vi.po +++ b/po/vi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2019-11-19 08:58+0700\n" "Last-Translator: krong\n" "Language-Team: none\n" @@ -1262,6 +1262,12 @@ 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" msgstr "Bạn có chắc chắn muốn thoát khỏi thuật sĩ này?" +#, fuzzy +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "Bạn có chắc chắn muốn kích hoạt cấu hình mạng này?\n" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3358,6 +3364,10 @@ msgstr "Xóa mục nhập" msgid "Delete Image" msgstr "Xóa hình ảnh" +#, fuzzy +msgid "Delete Wifi configuration" +msgstr "Cấu hình bộ chỉnh" + #, fuzzy msgid "Delete all the text" msgstr "Xóa mục nhập danh sách phát" @@ -3407,6 +3417,10 @@ msgstr "Xóa ký tự bên trái con trỏ bộ đệm văn bản" msgid "Delete the character under the text cursor" msgstr "Xóa ký tự dưới con trỏ bộ đệm văn bản" +#, fuzzy +msgid "Delete the current Wifi configuration.\n" +msgstr "Kích hoạt cấu hình hiện tại" + msgid "Delete the selected files or directories" msgstr "" @@ -4437,6 +4451,10 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +#, fuzzy +msgid "Error removing your wifi configuration" +msgstr "Cấu hình danh sách phim" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4972,6 +4990,10 @@ msgstr "Đã kết thúc" msgid "Finished configuring your network" msgstr "Hoàn tất cấu hình mạng của bạn" +#, fuzzy +msgid "Finished removing your wifi configuration" +msgstr "Hoàn tất khởi động lại mạng của bạn" + msgid "Finished restarting your network" msgstr "Hoàn tất khởi động lại mạng của bạn" @@ -8742,9 +8764,6 @@ msgstr "Nhấn OK trên điều khiển từ xa của bạn để tiếp tục." msgid "Press OK to activate the selected %s skin." msgstr "Nhấn OK để kích hoạt giao diện đã chọn." -msgid "Press OK to activate the settings." -msgstr "Nhấn OK để kích hoạt cài đặt." - msgid "Press OK to edit the settings." msgstr "Nhấn OK để chỉnh sửa cài đặt." @@ -8791,6 +8810,10 @@ msgstr "Nhấn OK để chuyển đổi lựa chọn." msgid "Press OK, save and exit..." msgstr "Nhấn OK, lưu và thoát ..." +#, fuzzy +msgid "Press green button to activate the settings." +msgstr "Nhấn OK để kích hoạt cài đặt." + msgid "Press or select button and then press 'OK' for attach function." msgstr "Nhấn hoặc chọn nút và sau đó nhấn 'OK' để đính kèm chức năng." diff --git a/po/zh_CN.po b/po/zh_CN.po index 64fe4b455f..4f03a201d1 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2021-01-11 15:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1200,6 +1200,11 @@ msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "" +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3182,6 +3187,9 @@ msgstr "" msgid "Delete Image" msgstr "" +msgid "Delete Wifi configuration" +msgstr "" + msgid "Delete all the text" msgstr "" @@ -3224,6 +3232,9 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +msgid "Delete the current Wifi configuration.\n" +msgstr "" + msgid "Delete the selected files or directories" msgstr "" @@ -4172,6 +4183,9 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +msgid "Error removing your wifi configuration" +msgstr "" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4666,6 +4680,9 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +msgid "Finished removing your wifi configuration" +msgstr "" + msgid "Finished restarting your network" msgstr "" @@ -8181,9 +8198,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "" -msgid "Press OK to activate the settings." -msgstr "" - msgid "Press OK to edit the settings." msgstr "" @@ -8228,6 +8242,9 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +msgid "Press green button to activate the settings." +msgstr "" + msgid "Press or select button and then press 'OK' for attach function." msgstr "" diff --git a/po/zh_HK.po b/po/zh_HK.po index 7a6fa4203b..baf319ae47 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: enigma 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-04 18:59+0200\n" +"POT-Creation-Date: 2024-06-05 13:49+0200\n" "PO-Revision-Date: 2021-01-11 15:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -1196,6 +1196,11 @@ msgstr "" msgid "Are you sure you want to reload the EPG data from:\n" msgstr "" +msgid "" +"Are you sure you want to remove your wifi configuration?\n" +"\n" +msgstr "" + msgid "" "Are you sure you want to restart your network interfaces?\n" "\n" @@ -3176,6 +3181,9 @@ msgstr "" msgid "Delete Image" msgstr "" +msgid "Delete Wifi configuration" +msgstr "" + msgid "Delete all the text" msgstr "" @@ -3218,6 +3226,9 @@ msgstr "" msgid "Delete the character under the text cursor" msgstr "" +msgid "Delete the current Wifi configuration.\n" +msgstr "" + msgid "Delete the selected files or directories" msgstr "" @@ -4165,6 +4176,9 @@ msgstr "" msgid "Error reading bouquets.tv" msgstr "" +msgid "Error removing your wifi configuration" +msgstr "" + #, python-format msgid "" "Error renaming %s to %s:\n" @@ -4659,6 +4673,9 @@ msgstr "" msgid "Finished configuring your network" msgstr "" +msgid "Finished removing your wifi configuration" +msgstr "" + msgid "Finished restarting your network" msgstr "" @@ -8174,9 +8191,6 @@ msgstr "" msgid "Press OK to activate the selected %s skin." msgstr "" -msgid "Press OK to activate the settings." -msgstr "" - msgid "Press OK to edit the settings." msgstr "" @@ -8221,6 +8235,9 @@ msgstr "" msgid "Press OK, save and exit..." msgstr "" +msgid "Press green button to activate the settings." +msgstr "" + msgid "Press or select button and then press 'OK' for attach function." msgstr ""