diff options
Diffstat (limited to 'applications/luci-app-travelmate')
40 files changed, 10286 insertions, 8629 deletions
diff --git a/applications/luci-app-travelmate/Makefile b/applications/luci-app-travelmate/Makefile index 28b9ba0603..34ecbe1de5 100644 --- a/applications/luci-app-travelmate/Makefile +++ b/applications/luci-app-travelmate/Makefile @@ -1,11 +1,10 @@ -# Copyright 2017-2022 Dirk Brenken (dev@brenken.org) +# Copyright 2017-2023 Dirk Brenken (dev@brenken.org) # This is free software, licensed under the Apache License, Version 2.0 include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI support for Travelmate -LUCI_DEPENDS:=+travelmate +luci-lib-jsonc -LUCI_PKGARCH:=all +LUCI_DEPENDS:=+luci-base +travelmate PKG_LICENSE:=Apache-2.0 diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js index a8069135a0..6eab177982 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js @@ -321,11 +321,21 @@ return view.extend({ o = s.taboption('general', widgets.NetworkSelect, 'trm_vpnifacelist', _('Limit VPN processing'), _('Limit VPN processing to certain interfaces.')); o.depends('trm_vpn', '1'); - o.unspecified = true; o.multiple = true; o.nocreate = true; o.rmempty = true; + o = s.taboption('general', form.Value, 'trm_stdvpnservice', _('Standard VPN Service'), _('Standard VPN service which will be automatically added to new STA profiles.')); + o.depends('trm_vpn', '1'); + o.value('wireguard'); + o.value('openvpn'); + o.rmempty = true; + + o = s.taboption('general', widgets.NetworkSelect, 'trm_stdvpniface', _('Standard VPN interface'), _('Standard VPN interface which will be automatically added to new STA profiles.')); + o.depends('trm_vpn', '1'); + o.nocreate = true; + o.rmempty = true; + o = s.taboption('general', form.Flag, 'trm_netcheck', _('Net Error Check'), _('Treat missing internet availability as an error.')); o.depends('trm_captive', '1'); o.default = 0; @@ -392,11 +402,11 @@ return view.extend({ o.rmempty = true; o = s.taboption('additional', form.ListValue, 'trm_useragent', _('User Agent'), _('The selected user agent will be used for connectivity- and captive portal checks.')); - o.value('Mozilla/5.0 (X11; Linux x86_64; rv:90.0) Gecko/20100101 Firefox/90.0', 'Firefox (default)'); - o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36', 'Chromium'); - o.value('Mozilla/5.0 (Macintosh; Intel Mac OS X 11_5_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15', 'Safari'); - o.value('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.55', 'Edge'); - o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 OPR/77.0.4054.277', 'Opera'); + o.value('Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/118.0', 'Firefox (default)'); + o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36', 'Chromium'); + o.value('Mozilla/5.0 (Macintosh; Intel Mac OS X 14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36', 'Safari'); + o.value('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.61', 'Edge'); + o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 OPR/103.0.0.0', 'Opera'); o.optional = true; o.rmempty = true; diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js index fcd98fa37f..0fa5169f5b 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js @@ -70,6 +70,7 @@ function handleSectionsAdd(iface) { w_sections = uci.sections('wireless', 'wifi-iface'); t_sections = uci.sections('travelmate', 'uplink'); + for (var i = 0; i < w_sections.length; i++) { if (w_sections[i].mode !== 'sta' || w_sections[i].network !== iface) { continue; @@ -82,13 +83,21 @@ function handleSectionsAdd(iface) { } } if (match === false) { + var vpn_stdservice = uci.get('travelmate', 'global', 'trm_stdvpnservice'); + var vpn_stdiface = uci.get('travelmate', 'global', 'trm_stdvpniface'); var sid = uci.add('travelmate', 'uplink'); + uci.set('travelmate', sid, 'enabled', '1'); uci.set('travelmate', sid, 'device', w_sections[i].device); uci.set('travelmate', sid, 'ssid', w_sections[i].ssid); uci.set('travelmate', sid, 'bssid', w_sections[i].bssid); uci.set('travelmate', sid, 'con_start_expiry', '0'); uci.set('travelmate', sid, 'con_end_expiry', '0'); + if (vpn_stdservice && vpn_stdiface) { + uci.set('travelmate', sid, 'vpn', '1'); + uci.set('travelmate', sid, 'vpnservice', vpn_stdservice); + uci.set('travelmate', sid, 'vpniface', vpn_stdiface); + } } } } @@ -557,7 +566,6 @@ return view.extend({ o.ucisection = 'uplink'; o.ucioption = 'macaddr'; o.nocreate = false; - o.unspecified = true; o.rmempty = true; o.datatype = 'macaddr'; o.cfgvalue = function (section_id) { @@ -699,7 +707,6 @@ return view.extend({ } o = s.taboption('vpn', widgets.NetworkSelect, '_vpniface', _('VPN Interface'), _('The logical vpn network interface like \'wg0\'.')); - o.unspecified = false; o.nocreate = true; o.optional = true; o.modalonly = true; diff --git a/applications/luci-app-travelmate/po/ar/travelmate.po b/applications/luci-app-travelmate/po/ar/travelmate.po index 41a635ec09..439101ff6a 100644 --- a/applications/luci-app-travelmate/po/ar/travelmate.po +++ b/applications/luci-app-travelmate/po/ar/travelmate.po @@ -15,105 +15,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "المصادقة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "قناة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -123,150 +123,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "جهاز" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "غير مفعل" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "إلغاء" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "اسحب لإعادة ترتيب" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "ملف تعريف البريد الإلكتروني" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "عنوان مستقبل البريد الإلكتروني" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "عنوان مرسل البريد الإلكتروني" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "موضوع البريد الإلكتروني" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "طريقة EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "تحرير" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "قم بتحرير هذه الشبكة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "تمكين التسجيل المطول لتصحيح الأخطاء في حالة وجود أي أخطاء في المعالجة." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "مفعل" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "التشفير" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "الاعدادات العامة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -274,29 +274,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "معلومة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -304,33 +304,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "آخر تشغيل" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -338,32 +338,32 @@ msgstr "" msgid "Log View" msgstr "عرض السجل" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -371,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -406,212 +406,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "كلمة المرور" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "كلمة مرور المفتاح الخاص" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "المسار إلى CA-Certificate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "مسار شهادة العميل" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "المسار إلى المفتاح الخاص" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "تشغيل الإشارات" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "إحفض" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "إعدادات" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "الحالة / الإصدار" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -623,20 +641,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,7 +672,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -667,7 +685,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -675,178 +693,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "تأخير الزناد" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "تسجيل مطول للتصحيح" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -854,34 +872,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "لا شيء" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/bg/travelmate.po b/applications/luci-app-travelmate/po/bg/travelmate.po index a9af6c9c1b..c1805d015c 100644 --- a/applications/luci-app-travelmate/po/bg/travelmate.po +++ b/applications/luci-app-travelmate/po/bg/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Допълнителни настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Канал" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Устройство" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Забранен" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Затвори" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Плъзнете, за да пренаредите" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail Профил" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Mail Изпращач" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-Mail Тема" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-метод" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Редактиране" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Редактиране на тази мрежа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Включи подрбони журнали в случай на работни грешки." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Разрешен" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Криптиране" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Основни настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Информация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Премахни" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Запази" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,33 +871,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/bn_BD/travelmate.po b/applications/luci-app-travelmate/po/bn_BD/travelmate.po index 305963bea6..8361dcfe85 100644 --- a/applications/luci-app-travelmate/po/bn_BD/travelmate.po +++ b/applications/luci-app-travelmate/po/bn_BD/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "ডিভাইস" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "নিষ্ক্রিয়" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "বাতিল" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "সক্রিয়" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "সাধারণ সেটিংস" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC অ্যাড্রেস" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "সংরক্ষণ করুন" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "সেটিংস" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,33 +871,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/ca/travelmate.po b/applications/luci-app-travelmate/po/ca/travelmate.po index 6d8678e7aa..5bfc66b42c 100644 --- a/applications/luci-app-travelmate/po/ca/travelmate.po +++ b/applications/luci-app-travelmate/po/ca/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Identitat anònima" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Script d’inici de sessió automàtic" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Detecció de portals captius" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Límit de connexions" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Dispositiu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Oblida-ho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Arrossegueu per reordenar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Adreça del destinatari de correu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Edita" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Xifratge" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Paràmetres generals" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identitat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informació" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Darrera execució" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opcional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Contrasenya" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Contrasenya de la clau privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Camí cap al certificat CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Camí cap al certificat de client" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Camí cap a la clau privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (amagat)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Desar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Paràmetres" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Enregistrament detallat de depuració" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/cs/travelmate.po b/applications/luci-app-travelmate/po/cs/travelmate.po index 65416f95aa..9de19506a2 100644 --- a/applications/luci-app-travelmate/po/cs/travelmate.po +++ b/applications/luci-app-travelmate/po/cs/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2023-03-23 17:49+0000\n" +"PO-Revision-Date: 2023-09-18 21:37+0000\n" "Last-Translator: David Rapaň <david@rapan.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/cs/>\n" @@ -8,111 +8,111 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 5.0.2\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- výběr přístupového bodu --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." -msgstr "QR kódy AP" +msgstr "QR kódy AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Další nastavení" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" -msgstr "" +msgstr "Anonymní identita" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanál" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Zařízení" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Zakázáno" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Zahodit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-mailový profil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Adresa odesílatele e-mailu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Téma e-mailu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Metoda EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Upravit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" -msgstr "" +msgstr "Upravit tuto síť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Zapnuto" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Šifrování" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Obecná nastavení" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identita" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informace" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Název rozhraní" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Časový limit rozhraní" @@ -303,33 +303,33 @@ msgstr "Časový limit rozhraní" msgid "Interface Wizard" msgstr "Průvodce rozhraním" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Průvodce nastavením rozhraní..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Poslední spuštění" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "Zobrazení protokolu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC adresa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "Přehled" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Heslo privátního klíče" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Cesta k certifikátu klienta" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Cesta k privátnímu klíči" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Odstranit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Uložit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Nastavení" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Prodleva spuštění" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/da/travelmate.po b/applications/luci-app-travelmate/po/da/travelmate.po index dd44a7d86c..aab401100a 100644 --- a/applications/luci-app-travelmate/po/da/travelmate.po +++ b/applications/luci-app-travelmate/po/da/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2023-04-24 17:51+0000\n" +"PO-Revision-Date: 2023-07-17 17:20+0000\n" "Last-Translator: drax red <drax@outlook.dk>\n" "Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/da/>\n" @@ -8,105 +8,105 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 5.0-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- AP Selection --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Yderligere indstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonym identitet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Godkendelse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" -msgstr "" +msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -114,7 +114,7 @@ msgstr "" "Tjek tilgængeligheden af internettet, håndter omdirigeringer af captive " "portaler og hold uplink-forbindelsen 'i live'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -124,151 +124,151 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Enhed" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Deaktiveret" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Afvis" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Træk for at omarrangere" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-mail profil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Modtagerens e-mailadresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-mail afsenderadresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-mail emne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-metode" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Rediger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Rediger dette netværk" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Aktiver verbose debug-logning i tilfælde af eventuelle behandlingsfejl." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Aktiver" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Generelle indstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -276,29 +276,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identitet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Information" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -306,33 +306,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Sidste kørsel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -340,32 +340,32 @@ msgstr "" msgid "Log View" msgstr "Logvisning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-adresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -373,24 +373,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Valgfrit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -398,7 +398,7 @@ msgstr "" msgid "Overview" msgstr "Oversigt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -408,212 +408,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" -msgstr "" +msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Adgangskode" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Adgangskode til den private nøgle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Sti til CA-certifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Sti til klient-certifikatet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Sti til privat nøgle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Fjern" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Påkrævet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Kør flag" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Gem" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Serviceprioritet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Indstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status / version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -625,20 +643,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -656,7 +674,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -669,7 +687,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -677,178 +695,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Udløserforsinkelse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Brug systemcertifikater" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Brugeragent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Verbose Debug Logning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -856,33 +874,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "ingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/de/travelmate.po b/applications/luci-app-travelmate/po/de/travelmate.po index 6d664ed24b..c8f29086fc 100644 --- a/applications/luci-app-travelmate/po/de/travelmate.po +++ b/applications/luci-app-travelmate/po/de/travelmate.po @@ -1,63 +1,63 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-11-14 15:47+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2023-09-25 17:27+0000\n" +"Last-Translator: \"Jörg S.\" <joerg.schwerdtfeger@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.15-dev\n" +"X-Generator: Weblate 5.1-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- AP-Auswahl --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Uplink hinzufügen %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Uplink hinzufügen..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Zusätzliche Trigger-Verzögerung in Sekunden, bevor Travelmate startet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonyme Identität" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Automatisch hinzugefügter offener Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Auto-Login-Skript" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Automatisch offene Uplinks hinzufügen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -66,7 +66,7 @@ msgstr "" "nach fehlgeschlagenen Anmeldeversuchen. <br /> Die Standardeinstellung '0' " "deaktiviert diese Funktion." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -74,7 +74,7 @@ msgstr "" "Füge der Netzwerk-Konfiguration automatisch offene Uplinks wie Hotel-" "HotSpots hinzu." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -83,7 +83,7 @@ msgstr "" "zeitgesteuerte Verbindungen. <br /> Die Standardeinstellung '0' deaktiviert " "diese Funktion." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -93,31 +93,31 @@ msgstr "" "Funktion erfordert die zusätzliche Konfiguration von <em>Wireguard</em> oder " "<em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Captive-Portal-Erkennung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Captive-Portal-URL" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -125,7 +125,7 @@ msgstr "" "Überprüfen Sie die Internetverfügbarkeit, bearbeiten Sie Captive-Portal-" "Umleitungen und halten Sie die Uplink-Verbindung \"am Leben\"." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -142,136 +142,136 @@ msgstr "" "'Interface Wizard' einmal auf, um die notwendigen Netzwerk- und Firewall-" "Einstellungen vorzunehmen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Verbindungsende" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Verbindungsende-Ablauf" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Verbindungslimit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Verbindungsstart" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Verbindungsstart-Ablauf" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Gerät" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Gerätename" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "Deaktiviert" +msgstr "deaktiviert" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Verwerfen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Ziehen zur Neuanordnung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "E-Mail-Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail-Profil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "E-Mail Empfängeradresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Mail Absenderadresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "E-Mail-Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-Mail-Thema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-Methode" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Bearbeiten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Dieses Netzwerk bearbeiten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Travelmate-Service aktivieren." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Aktiviere das ausführliche Anwendungs-Logging bei Verarbeitungsfehlern." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Dieses Netzwerk aktivieren/deaktivieren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Verschlüsselung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Ext. Hooks" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -279,16 +279,16 @@ msgstr "" "Externe Skriptreferenz, die für automatisierte Captive-Portal-Anmeldungen " "aufgerufen wird." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "SCHNELL" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Allgemeine Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Generieren Sie für jede Uplink-Verbindung eine zufällige Unicast-MAC-Adresse." @@ -297,31 +297,31 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "Zugriff auf LuCI App Travelmate gewähren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Wie lange Travelmate auf eine erfolgreiche WLAN-Uplink-Verbindung warten " "sollte." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identität" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "BSSID ignorieren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informationen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Name der Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Zeitüberschreitung der Schnittstelle" @@ -329,27 +329,27 @@ msgstr "Zeitüberschreitung der Schnittstelle" msgid "Interface Wizard" msgstr "Schnittstellenassistent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Schnittstellen-Assistent ..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Letzter Durchgang" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Automatisches Hinzufügen einschränken" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "VPN-Verarbeitung einschränken" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "VPN-Verarbeitung auf bestimmten Schnittstellen einschränken." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -357,7 +357,7 @@ msgstr "" "Die maximale Anzahl der automatisch hinzugefügten offenen Uplinks begrenzen. " "Um diese Begrenzung zu deaktivieren, setzen Sie sie auf \"0\"." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Die Ergebnisse des Nahbereichs-Scans einschränken, um nur die stärksten " @@ -367,26 +367,26 @@ msgstr "" msgid "Log View" msgstr "Protokollansicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-Adresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Verwaltung des Frame-Schutzes" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -394,7 +394,7 @@ msgstr "" "Mindestschwelle für die Signalqualität in Prozent für bedingte Uplink-" "Verbindungen/Unterbrechungen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Netzfehlerprüfung" @@ -402,24 +402,24 @@ msgstr "Netzfehlerprüfung" msgid "No travelmate related logs yet!" msgstr "Es existieren noch keine Travelmate-bezogenen Protokolle!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Ein/Aus" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Optional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Gesamt-Timeout" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Gesamtzeitlimit für Wiederholungen in Sekunden." @@ -427,7 +427,7 @@ msgstr "Gesamtzeitlimit für Wiederholungen in Sekunden." msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -444,48 +444,48 @@ msgstr "" "ist in <span style=\"color:rgb(68, 170, 68);font-weight:bold\">grün</span> " "hervorgehoben." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Passwort" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Passwort des privaten Schlüssels" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Pfad zum Client-Zertifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Pfad zum Privaten Schlüssel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Bitte installieren Sie das separate 'qrencode'-Paket." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -493,11 +493,11 @@ msgstr "" "Bitte beachten Sie: Für E-Mail-Benachrichtigungen muss das Paket <em>mstmp</" "em> separat eingerichtet werden.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive-Uplink-Switch" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -505,37 +505,37 @@ msgstr "" "Trotz einer bereits bestehenden Verbindung proaktiv scannen und zu einem " "Uplink mit höherer Priorität wechseln." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Profil, das von 'msmtp' zur Benachrichtigung von Travelmate-E-Mails " "verwendet wird." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR-Code Übersicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Funkmodulauswahl" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "MAC-Adressen randomisieren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Empfängeradresse für Travelmate-Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Entfernen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Dieses Netzwerk entfernen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -543,84 +543,84 @@ msgstr "" "Legen Sie den QR-Code des ausgewählten Access Points vor, um die WLAN-" "Anmeldeinformationen bequem auf Ihre Mobilgeräte zu übertragen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Scan wiederholen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Erforderlich" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Schnittstelle neustarten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Beschränke travelmate auf ein einzelnes Funkmodul oder ändere die globale " "Scan-Reihenfolge." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Wiederholungslimit für eine Verbindung zu einem Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Laufzeit-Flags" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (versteckt)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Speichern" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Scan-Grenzwert" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Weiterscannen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Skriptargumente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Absenderadresse für Travelmate-Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Sendet nach jeder erfolgreichen Uplink-Verbindung Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Dienstpriorität" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Signalqualitätsschwelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -628,41 +628,59 @@ msgstr "" "Durch Leerzeichen getrennte Liste zusätzlicher Argumente, die an das " "automatische Anmeldeskript übergeben werden, z.B. Benutzername und Kennwort" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Starten des drahtlosen Scans am '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "Stations-ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Stationsschnittstellen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "Stations-MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Stärke" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Der QR-Code konnte nicht generiert werden!" @@ -674,22 +692,22 @@ msgstr "Der Name der Firewall-Zone" msgid "The interface metric" msgstr "Die Schnittstellenmetrik" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "Die logische VPN-Netzwerkschnittstelle, wie 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Die ausgewählte URL wird für Konnektivitäts- und Captive-Portal-Prüfungen " "verwendet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "Die ausgewählte Priorität wird für Travelmate-Prozesse verwendet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -711,7 +729,7 @@ msgstr "Die Uplink-Schnittstelle wurde aktualisiert." msgid "The uplink interface name" msgstr "Der Name der Uplink-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -730,7 +748,7 @@ msgstr "" "Alias-Netzwerkschnittstelle mit allen erforderlichen Netzwerk- und Firewall-" "Einstellungen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails." @@ -738,180 +756,180 @@ msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Travelmate-Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Fehlende Internetverfügbarkeit als Fehler behandeln." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Benutze System-Zertifikate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Verwenden der angegebenen MAC-Adresse für diesen Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "User-Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "VPN-Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN-Dienst" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "VPN-Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN-Verbindungen werden von travelmate verwaltet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN-Verarbeitung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Überprüfen des Serverzertifikats mithilfe des integrierten " "Systemzertifizierungsstellenpakets" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Ausführliche Debug-Protokollierung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA-Flags" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Drahtloser Scan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Drahtlose Einstellungen" @@ -919,34 +937,34 @@ msgstr "Drahtlose Einstellungen" msgid "Wireless Stations" msgstr "Drahtlose Stationen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "kein" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "Benutze beide Funkmodule in normaler Sortierung (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "Benutze beide Funkmodule in umgekehrter Sortierung (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "Benutze nur das erste Funkmodul (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "Benutze nur das zweite Funkmodul (radio1)" diff --git a/applications/luci-app-travelmate/po/el/travelmate.po b/applications/luci-app-travelmate/po/el/travelmate.po index ced5be9050..e61bca0201 100644 --- a/applications/luci-app-travelmate/po/el/travelmate.po +++ b/applications/luci-app-travelmate/po/el/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Επιπρόσθετες ρυθμίσεις" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Ανώνυμη Ταυτότητα" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Κανάλι" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Συσκευή" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Ενεργοποιήθηκε" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Γενικές ρυθμίσεις" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Ρυθμίσεις" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/en/travelmate.po b/applications/luci-app-travelmate/po/en/travelmate.po index 61218dc42a..88db021071 100644 --- a/applications/luci-app-travelmate/po/en/travelmate.po +++ b/applications/luci-app-travelmate/po/en/travelmate.po @@ -1,118 +1,118 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-07-03 10:25+0000\n" -"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n" +"PO-Revision-Date: 2023-11-30 14:34+0000\n" +"Last-Translator: rygle <pittos@post.com>\n" "Language-Team: English <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/en/>\n" "Language: en\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.13.1-dev\n" +"X-Generator: Weblate 5.3-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" -msgstr "" +msgstr "Device" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" -msgstr "" +msgstr "General Settings" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,32 +370,32 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" -msgstr "" +msgstr "Overview" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,33 +871,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/es/travelmate.po b/applications/luci-app-travelmate/po/es/travelmate.po index 875e597c33..8c021f3681 100644 --- a/applications/luci-app-travelmate/po/es/travelmate.po +++ b/applications/luci-app-travelmate/po/es/travelmate.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2023-03-18 11:40+0000\n" -"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n" +"PO-Revision-Date: 2023-10-31 23:08+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/es/>\n" "Language: es\n" @@ -11,58 +11,58 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 5.2-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Selección de AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Códigos QR del AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Agregar enlace ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Agregar enlace ascendente..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Configuración adicional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Demora adicional del disparador en segundos antes de que comience el " "procesamiento de travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Identidad anónima" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Agregar automáticamente enlaces ascendentes abiertos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Script de inicio de sesión automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Auto agregar enlaces ascendentes abiertos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -71,7 +71,7 @@ msgstr "" "minutos, p.e. después de intentos fallidos de inicio de sesión.<br/> El " "valor predeterminado de '0' desactiva esta función." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -79,7 +79,7 @@ msgstr "" "Agregue automáticamente enlaces ascendentes abiertos como portales cautivos " "de hotel a su configuración inalámbrica." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -88,7 +88,7 @@ msgstr "" "minutos, p.e. para conexiones temporizadas.<br/> El valor predeterminado de " "'0' desactiva esta función." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -97,31 +97,31 @@ msgstr "" "Maneja automáticamente las conexiones VPN. <br /> Nota: esta función " "requiere la configuración adicional de <em>Wireguard</em> u <em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Detección de portal cautivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "URL del portal cautivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -129,7 +129,7 @@ msgstr "" "Verifique la disponibilidad de Internet, maneje las redirecciones de los " "portales cautivos y mantenga la conexión de enlace ascendente 'viva'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -146,137 +146,137 @@ msgstr "" "vez al \"Asistente de interfaz\" para realizar los ajustes necesarios de red " "y firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Fin de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Caducidad de fin de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Límite de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Inicio de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Vencimiento de inicio de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Nombre del dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Desactivado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Descartar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "Gancho de correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Perfil de correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Dirección del destinatario de correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Dirección del remitente de correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Configuraciones del correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Tema del correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Editar esta red" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Activar el servicio TravelMate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Activar el registro de depuración detallado en caso de errores de " "procesamiento." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Habilitar/Deshabilitar esta red" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Encriptación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Manos ext." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -284,16 +284,16 @@ msgstr "" "Referencia de script externo que se llamará para inicios de sesión cautivos " "automatizados del portal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "RÁPIDO" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Configuración general" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Genere una dirección MAC de unidifusión aleatoria para cada conexión de " @@ -303,31 +303,31 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "Otorgar acceso a la aplicación Travelmate de LuCI" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Cuánto tiempo debe esperar travelmate para una conexión de enlace wlan sea " "exitosa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identidad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignorar BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Información" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Nombre de interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Tiempo de espera de la interfaz" @@ -335,27 +335,27 @@ msgstr "Tiempo de espera de la interfaz" msgid "Interface Wizard" msgstr "Asistente de interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Asistente de interfaz..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Último inicio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Limitar AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Limitar el procesamiento de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Limitar el procesamiento de VPN a ciertas interfaces." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -363,7 +363,7 @@ msgstr "" "Limite el número máximo de enlaces ascendentes abiertos agregados " "automáticamente. Para desactivar esta limitación, establézcala en '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Limite los resultados del análisis cercano para procesar solo los enlaces " @@ -373,26 +373,26 @@ msgstr "" msgid "Log View" msgstr "Vista de registro" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Dirección MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Protección del marco de gestión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -400,7 +400,7 @@ msgstr "" "Umbral de calidad de señal mínimo como porcentaje para conexiones (dis-) de " "enlace condicional." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Comprobación de error neto" @@ -408,24 +408,24 @@ msgstr "Comprobación de error neto" msgid "No travelmate related logs yet!" msgstr "¡Aún no hay registros relacionados con Travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Encender/Apagar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opcional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Tiempo de espera total" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Tiempo de espera de reintento global en segundos." @@ -433,7 +433,7 @@ msgstr "Tiempo de espera de reintento global en segundos." msgid "Overview" msgstr "Visión general" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -450,48 +450,48 @@ msgstr "" "de enlace ascendente VPN cifrada se enfatiza en <span style=\"color:rgb(68, " "170, 68);font-weight:bold\">verde</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Contraseña" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Contraseña de clave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Ruta al certificado CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Ruta al certificado del cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Ruta a la clave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Instale el paquete 'qrencode' por separado." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -499,11 +499,11 @@ msgstr "" "Tenga en cuenta: las notificaciones por correo electrónico requieren la " "configuración por separado del paquete <em>mstmp</em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "Interruptor de enlace proactivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -511,39 +511,39 @@ msgstr "" "Escanee de forma proactiva y cambie a un enlace de mayor prioridad, a pesar " "de una conexión ya existente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil utilizado por 'msmtp' para los correos electrónicos de notificación " "de travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Descripción general del código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Selección de radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Aleatorizar direcciones MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Dirección del destinatario de los correos electrónicos de notificación de " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Eliminar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Eliminar esta red" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -551,86 +551,86 @@ msgstr "" "Genere el código QR del AP seleccionado para transferir cómodamente las " "credenciales WLAN a sus dispositivos móviles." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Repetir escaneo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Requerido" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Reiniciar interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Restrinja Travelmate a una sola radio o cambie el orden de escaneo general." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Vuelva a intentar el límite para conectarse a un enlace ." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Ejecutar banderas" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Límite de escaneo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Escanear en" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Argumentos de script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" "Dirección del remitente para los correos electrónicos de notificación de " "Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Envía notificaciones por correo electrónico después de cada conexión de " "enlace ascendente exitosa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Prioridad de servicio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Configuraciones" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Umbral de calidad de señal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -639,41 +639,63 @@ msgstr "" "de comandos de inicio de sesión automático, es decir, nombre de usuario y " "contraseña" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "Servicio VPN estándar" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "Interfaz VPN estándar" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" +"Interfaz VPN estándar que se agregará automáticamente a los nuevos perfiles " +"de STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" +"Servicio VPN estándar que se agregará automáticamente a los nuevos perfiles " +"de STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Iniciando escaneo inalámbrico en '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "ID de estación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Interfaces de las estaciones" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "MAC de la estación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Estado/Versión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Intensidad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "¡No se pudo generar el código QR!" @@ -685,23 +707,23 @@ msgstr "El nombre de la zona de firewall" msgid "The interface metric" msgstr "La métrica de la interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "La interfaz de red vpn lógica como 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "La URL seleccionada se utilizará para las comprobaciones de conectividad y " "del portal cautivo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" "La prioridad seleccionada se utilizará para los procesos de Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -723,7 +745,7 @@ msgstr "La interfaz de enlace ascendente se ha actualizado." msgid "The uplink interface name" msgstr "El nombre de la interfaz de enlace ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -741,7 +763,7 @@ msgstr "" "una vez. Este asistente crea una interfaz de red de alias IPv4 e IPv6 con " "todas las configuraciones de red y cortafuegos requeridas." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Tema para correos electrónicos de notificación de compañeros de viaje." @@ -749,180 +771,180 @@ msgstr "Tema para correos electrónicos de notificación de compañeros de viaje msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Configuración de Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Trate la falta de disponibilidad de Internet como un error." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Retraso de disparo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Usar certificados del sistema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Utilice la dirección MAC especificada para este enlace ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Agente de usuario" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "Interfaz VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "Servicio VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Configuración de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "Las conexiones VPN serán administradas por travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "Procesamiento de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Validar el certificado del servidor mediante el paquete de CA del sistema " "integrado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Registro de depuración detallado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "Encriptación WPA (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "Encriptación WPA (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Banderas WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA personal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "Encriptación WPA/WPA2 (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Enterprise" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "Encriptación WPA2 (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "Encriptación WPA2 (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 personal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "Encriptación WPA2/WPA3" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "Encriptación WPA3" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 personal (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Escanear red Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Configuración Wi-Fi" @@ -930,34 +952,34 @@ msgstr "Configuración Wi-Fi" msgid "Wireless Stations" msgstr "Estaciones Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "ninguno" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "utilizar ambas radios, orden de clasificación normal (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "utilizar ambas radios, orden inverso (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "use la primera radio solamente (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "use la segunda radio solamente (radio1)" diff --git a/applications/luci-app-travelmate/po/fi/travelmate.po b/applications/luci-app-travelmate/po/fi/travelmate.po index 1d39b366ad..d2258940d7 100644 --- a/applications/luci-app-travelmate/po/fi/travelmate.po +++ b/applications/luci-app-travelmate/po/fi/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-03-13 12:25+0000\n" +"PO-Revision-Date: 2023-10-18 05:43+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/fi/>\n" @@ -8,111 +8,111 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.12-dev\n" +"X-Generator: Weblate 5.1\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Lisäasetukset" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonyymi identiteetti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Todennus" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" -msgstr "" +msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanava" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Laite" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Pois käytöstä" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Hylkää" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Vedä järjestääksesi uudelleen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-menetelmä" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Muokkaa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Muokkaa tätä verkkoa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Käytössä" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Salaus" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Yleiset asetukset" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identiteetti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Tietoja" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Viimeksi ajettu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-osoite" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" -msgstr "" +msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Salasana" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Yksityisen avaimen salasana" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Polku CA-varmenteeseen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Polku asiakasvarmenteeseen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Polku yksityiseen avaimeen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Poista" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Tallenna" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Asetukset" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Tila / versio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "ei mitään" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/fr/travelmate.po b/applications/luci-app-travelmate/po/fr/travelmate.po index cce9577122..78d66c9e20 100644 --- a/applications/luci-app-travelmate/po/fr/travelmate.po +++ b/applications/luci-app-travelmate/po/fr/travelmate.po @@ -1,118 +1,133 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-07-26 02:13+0000\n" -"Last-Translator: Christophe Blancon <christophe.blancon@gmail.com>\n" +"PO-Revision-Date: 2023-06-18 10:26+0000\n" +"Last-Translator: viking76 <liaudetgael@gmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 4.18.1\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Sélection AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." -msgstr "" +msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" -msgstr "" +msgstr "Ajouter Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." -msgstr "" +msgstr "Ajouter Uplink..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Paramètres supplémentaires" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" +"Délai de déclenchement supplémentaire en secondes avant le début du " +"traitement de travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" -msgstr "" +msgstr "Identité anonyme" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" -msgstr "" +msgstr "Ajout automatique de la liaison montante ouverte" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" -msgstr "" +msgstr "Script de connexion automatique" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" -msgstr "" +msgstr "AutoAdd Open Uplinks" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" +"Réactivez automatiquement la liaison montante après <em>n</em> minutes, par " +"exemple après des tentatives de connexion infructueuses. <br /> La valeur " +"par défaut '0' désactive cette fonctionnalité." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" +"Ajoutez automatiquement des liens entrants ouverts tels que des portails " +"captifs d’hôtel à votre configuration sans fil." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" +"Désactiver automatiquement la liaison montante après <em>n</em> minutes, par " +"exemple pour les connexions temporisées.<br /> La valeur par défaut de \"0\" " +"désactive cette fonction." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" +"Gérer automatiquement les connexions VPN.<br /> Remarque : cette fonction " +"nécessite la configuration supplémentaire de <em>Wireguard</em> ou " +"<em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" -msgstr "" +msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" -msgstr "" +msgstr "Détection du portail captif" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" -msgstr "" +msgstr "URL du portail captif" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" +"Vérifier la disponibilité de l'internet, gérer les redirections du portail " +"captif et maintenir la connexion ascendante \"vivante\"." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -121,217 +136,231 @@ msgid "" "<em>Please note:</em> On first start please call the 'Interface Wizard' " "once, to make the necessary network- and firewall settings." msgstr "" +"Configuration du forfait travelmate pour activer la fonctionnalité du " +"routeur de voyage. Pour plus d’informations <a href=\"https://github.com/" +"openwrt/packages/blob/master/net/travelmate/files/README.md\" " +"target=\"_blank\" rel=\"noreferrer noopener\" >consultez la documentation en " +"ligne</a>. <br /> <em> Remarque:</em> Au premier démarrage, veuillez appeler " +"une fois l’assistant d’interface pour définir les paramètres réseau et pare-" +"feu nécessaires." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" -msgstr "" +msgstr "Fin de connexion" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" -msgstr "" +msgstr "Expiration de connexion" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" -msgstr "" +msgstr "Limite de connexion" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" -msgstr "" +msgstr "Connexion Démarrer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" -msgstr "" +msgstr "Expiration du début de la connexion" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Appareil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" -msgstr "" +msgstr "Nom de l'appareil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Désactivé" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Effacer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Faites glisser pour réorganiser" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" -msgstr "E-mail du profil" +msgstr "Courriel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Adresse e-mail du destinataire" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Adresse e-mail de l'expéditeur" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" -msgstr "" +msgstr "Réglages e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Objet de l'e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" -msgstr "" +msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" -msgstr "" +msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" -msgstr "" +msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" -msgstr "" +msgstr "EAP-Method" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" -msgstr "" +msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Éditer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Éditer ce réseau" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." -msgstr "" +msgstr "Activez le service travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Activez la journalisation de débogage verbeuse en cas d'erreurs de " "traitement." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" -msgstr "" +msgstr "Activer/désactiver ce réseau" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Chiffrement" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" +"Référence de script externe qui sera appelée pour les connexions " +"automatisées au portail captif." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" -msgstr "" +msgstr "FAST" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Paramètres généraux" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" +"Générer une adresse MAC aléatoire unicast pour chaque connexion uplink." #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 msgid "Grant access to LuCI app travelmate" -msgstr "" +msgstr "Accorder l'accès à l'application LuCI travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" +"Combien de temps doit attendre travelmate pour une connexion uplink wlan " +"réussie." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identité" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" -msgstr "" +msgstr "Ignorer BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Information" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" -msgstr "" +msgstr "Nom d'interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" -msgstr "" +msgstr "Interface Timeout" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Dernière exécution" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" +"Limitez le nombre maximal de liaisons montantes ouvertes ajoutées " +"automatiquement. Pour désactiver cette limitation, réglez-la sur '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -339,32 +368,32 @@ msgstr "" msgid "Log View" msgstr "Vue du journal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -372,32 +401,32 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" -msgstr "Aperçu" +msgstr "Vue d'ensemble" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -407,212 +436,237 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" -msgstr "" +msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Mot de passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Mot de passe de la clé privée" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Chemin du certificat CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Chemin du certificat-client" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Chemin de la clé privée" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" +"Analyse proactive et basculez vers une liaison montante plus prioritaire, " +"malgré une connexion déjà existante." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Désinstaller" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" +"Lisez le code QR du point d'accès sélectionné pour transférer facilement les " +"informations d'identification du réseau local sans fil vers vos appareils " +"mobiles." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Drapeaux d'exécution" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Sauvegarder" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Paramètres" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" +"Liste séparée par des espaces d’arguments supplémentaires transmis au script " +"de connexion automatique, c’est-à-dire nom d’utilisateur et mot de passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Statut / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -624,20 +678,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -655,11 +709,13 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." msgstr "" +"Cette option est sélectionnée par défaut si cette liaison montante a été " +"ajoutée automatiquement et compte comme 'Ouvrir la liaison montante'." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24 msgid "" @@ -668,186 +724,186 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" -msgstr "" +msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Délai de déclenchement" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Logs en mode verbeux" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -855,34 +911,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "aucun" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/he/travelmate.po b/applications/luci-app-travelmate/po/he/travelmate.po index 727e10938e..785368edaa 100644 --- a/applications/luci-app-travelmate/po/he/travelmate.po +++ b/applications/luci-app-travelmate/po/he/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"PO-Revision-Date: 2023-09-07 08:58+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/he/>\n" @@ -9,111 +9,111 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -123,150 +123,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "מכשיר" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "התעלמות" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" -msgstr "" +msgstr "הגדרות כלליות" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -274,29 +274,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -304,33 +304,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -338,32 +338,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" -msgstr "" +msgstr "כתובת חומרה (MAC)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -371,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -406,212 +406,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" -msgstr "" +msgstr "שם רשת" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "הגדרות" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -623,20 +641,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,7 +672,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -667,7 +685,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -675,178 +693,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -854,33 +872,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/hi/travelmate.po b/applications/luci-app-travelmate/po/hi/travelmate.po index 889fb413bf..44811d9491 100644 --- a/applications/luci-app-travelmate/po/hi/travelmate.po +++ b/applications/luci-app-travelmate/po/hi/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,33 +871,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/hu/travelmate.po b/applications/luci-app-travelmate/po/hu/travelmate.po index 7e61bef9f4..bd923e6886 100644 --- a/applications/luci-app-travelmate/po/hu/travelmate.po +++ b/applications/luci-app-travelmate/po/hu/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "További beállítások" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Csatorna" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,151 +122,151 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Eszköz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Letiltva" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Eltüntetés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Húzza az átrendezéshez" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail profil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Mail küldő cím" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 #, fuzzy msgid "E-Mail Topic" msgstr "E-Mail téma" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP módszer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Szerkesztés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Hálózat szerkesztése" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Titkosítás" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Általános Beállítások" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -274,29 +274,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Személyazonosság" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Információ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -304,33 +304,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Utolsó futás" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -338,32 +338,32 @@ msgstr "" msgid "Log View" msgstr "Log nézet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC cím" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -371,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -406,213 +406,231 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Jelszó" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Személyes kulcs jelszava" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Útvonal a CA-tanúsítványhoz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Útvonal az ügyféltanúsítványhoz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Útvonal a személyes kulcshoz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Eltávolítás" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Mentés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Beállítások" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 #, fuzzy msgid "Status / Version" msgstr "Státusz / Verzió" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -624,20 +642,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -655,7 +673,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -668,7 +686,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -676,178 +694,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -855,34 +873,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/it/travelmate.po b/applications/luci-app-travelmate/po/it/travelmate.po index d9a896b1a5..cb10664069 100644 --- a/applications/luci-app-travelmate/po/it/travelmate.po +++ b/applications/luci-app-travelmate/po/it/travelmate.po @@ -1,118 +1,120 @@ msgid "" msgstr "" -"PO-Revision-Date: 2023-01-29 23:26+0000\n" -"Last-Translator: Dex94 <Dasvaresu@dr.com>\n" +"PO-Revision-Date: 2023-10-16 16:56+0000\n" +"Last-Translator: Frankie McEyes <mceyes@protonmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.16-dev\n" +"X-Generator: Weblate 5.1\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Selezione AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Codici QR AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Aggiungi Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Aggiungi Uplink..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Impostazioni aggiuntive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" +"Ritardo di attivazione aggiuntivo in secondi prima dell'inizio " +"dell'elaborazione del travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" -msgstr "" +msgstr "Identità anonima" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" -msgstr "" +msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canale" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,151 +124,151 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "Disabilitato" +msgstr "Disattivato" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Chiudi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" -msgstr "Trascina per ordinare" +msgstr "Trascina per riordinare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Profilo e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Indirizzo e-mail destinatario" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Indirizzo e-mail mittente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" -msgstr "" +msgstr "Impostazioni e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Oggetto e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Metodo EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Modifica" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Modifica questa rete" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -"Abilita log di debug verboso in caso di qualsiasi errore di elaborazione." +"Attiva log di debug esteso in caso di qualsiasi errore di elaborazione." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" -msgstr "Abilitato" +msgstr "Attivato" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Crittografia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" -msgstr "Impostazioni Generali" +msgstr "Impostazioni generali" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -274,29 +276,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identità" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informazioni" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -304,33 +306,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" -msgstr "" +msgstr "Ultimo avvio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -338,32 +340,32 @@ msgstr "" msgid "Log View" msgstr "Vista dei log" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Indirizzo MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -371,24 +373,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" -msgstr "" +msgstr "Facoltativo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -396,7 +398,7 @@ msgstr "" msgid "Overview" msgstr "Riepilogo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -406,212 +408,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" -msgstr "" +msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Password" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Password della chiave privata" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Percorso del certificato CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" -msgstr "" +msgstr "Percorso del certificato client" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Percorso della chiave privata" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Rimuovi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Necessario" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Riavvia interfaccia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" -msgstr "Avvia Flags" +msgstr "Avvia flags" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Salva" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Impostazioni" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" -msgstr "Stato/versione" +msgstr "Stato / Versione" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -623,20 +643,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,7 +674,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -667,7 +687,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -675,178 +695,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" -msgstr "" +msgstr "Ritardo innesco" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" -msgstr "" +msgstr "Usa i certificati di sistema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" -msgstr "" +msgstr "Registro di debug dettagliato" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" -msgstr "" +msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -854,34 +874,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" -msgstr "" +msgstr "nessuno" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po index ba02c8fe4a..46e16b5cd7 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -17,56 +17,56 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "追加設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "認証" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "自動ログイン スクリプト" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -74,50 +74,50 @@ msgstr "" "ホテルのキャプティブ ポータルのような、オープンなアップリンクを自動的に無線設" "定に追加します。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "キャプティブポータル検知" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "チャンネル" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -127,135 +127,135 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "接続制限" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "デバイス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "無効" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "閉じる" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "ドラッグして並び替え" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Eメールプロファイル" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Eメール受信アドレス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Eメール送信者アドレス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Eメールトピック" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAPメソッド" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "編集" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "このネットワークを編集" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "エラーが発生した際に詳細なデバッグロギングを有効にします。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "有効" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "暗号化" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -263,16 +263,16 @@ msgstr "" "キャプティブ ポータルへの自動ログインのために呼び出される、外部スクリプトへの" "参照です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "一般設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -280,29 +280,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "Travelmate が無線アップリンクへの接続成功を待つ時間です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "識別子" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "BSSID の無視" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "情報" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "インターフェース タイムアウト" @@ -310,33 +310,33 @@ msgstr "インターフェース タイムアウト" msgid "Interface Wizard" msgstr "インターフェース ウィザード" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -344,26 +344,26 @@ msgstr "" msgid "Log View" msgstr "ログビュー" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -371,7 +371,7 @@ msgstr "" "条件付きアップリンク接続(または切断)のための、シグナル品質閾値の下限(%)で" "す。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "ネット エラーチェック" @@ -379,24 +379,24 @@ msgstr "ネット エラーチェック" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "実行間隔" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "全体的な再試行タイムアウト(秒)です。" @@ -404,7 +404,7 @@ msgstr "全体的な再試行タイムアウト(秒)です。" msgid "Overview" msgstr "概要" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -414,58 +414,58 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "パスワード" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "秘密鍵のパスワード" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "CA証明書のパス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "クライアント証明書のパス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "秘密鍵のパス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "積極的なアップリンク切替" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -473,155 +473,173 @@ msgstr "" "既存の接続に関わらず、より優先度の高いアップリンクへの積極的なスキャンと切り" "替えを行います。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "削除" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "アップリンクへの接続を試行する回数です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "実行フラグ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID(ステルス)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "サービス優先度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "シグナル品質閾値" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "ステータス / バージョン" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -633,20 +651,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -666,7 +684,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -679,7 +697,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -687,178 +705,178 @@ msgstr "" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "インターネット可用性が無い場合をエラーとして扱います。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "詳細なデバッグ ログ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "無線スキャン" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -866,34 +884,34 @@ msgstr "" msgid "Wireless Stations" msgstr "無線ステーション" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "なし" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/ko/travelmate.po b/applications/luci-app-travelmate/po/ko/travelmate.po index 01ba662da8..f7a8ca0cfb 100644 --- a/applications/luci-app-travelmate/po/ko/travelmate.po +++ b/applications/luci-app-travelmate/po/ko/travelmate.po @@ -1,118 +1,118 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-08-01 05:54+0000\n" -"Last-Translator: somni <me@somni.one>\n" +"PO-Revision-Date: 2023-10-04 07:12+0000\n" +"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14-dev\n" +"X-Generator: Weblate 5.1-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "채널" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" -msgstr "" +msgstr "장비" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "" +msgstr "비활성화" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "닫기" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "수정" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "활성화" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "암호화" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "기본 설정" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "정보" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "개요" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "패스워드" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "CA 인증서 경로" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "없음" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/lt/travelmate.po b/applications/luci-app-travelmate/po/lt/travelmate.po new file mode 100644 index 0000000000..3d801e7de0 --- /dev/null +++ b/applications/luci-app-travelmate/po/lt/travelmate.po @@ -0,0 +1,907 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2023-12-01 13:07+0000\n" +"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationstravelmate/lt/>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.3-dev\n" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 +msgid "-- AP Selection --" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 +msgid "AP QR-Codes..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 +msgid "Add Uplink %q" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 +msgid "Add Uplink..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +msgid "Additional Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 +msgid "" +"Additional trigger delay in seconds before travelmate processing begins." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 +msgid "Anonymous Identity" +msgstr "Anonimiška tapatybė" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +msgid "Authentication" +msgstr "Autentifikavimas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 +msgid "Auto Login Script" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 +msgid "" +"Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " +"failed login attempts.<br /> The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 +msgid "" +"Automatically add open uplinks like hotel captive portals to your wireless " +"config." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 +msgid "" +"Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " +"connections.<br /> The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 +msgid "" +"Automatically handle VPN connections.<br /> Please note: This feature " +"requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" +"em>." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +msgid "BSSID" +msgstr "„BSSID“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +msgid "CHAP" +msgstr "„CHAP“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Captive Portal Detection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "Channel" +msgstr "Kanalas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 +msgid "" +"Configuration of the travelmate package to enable travel router " +"functionality. For further information <a href=\"https://github.com/openwrt/" +"packages/blob/master/net/travelmate/files/README.md\" target=\"_blank\" " +"rel=\"noreferrer noopener\" >check the online documentation</a>. <br /> " +"<em>Please note:</em> On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 +msgid "Connection Limit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 +msgid "Connection Start" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +msgid "Device" +msgstr "Įrenginys" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 +msgid "Disabled" +msgstr "Išjungtas/-i" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 +msgid "Dismiss" +msgstr "Nepaisyti" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 +msgid "E-Mail Profile" +msgstr "El. pašto profilis" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 +msgid "E-Mail Receiver Address" +msgstr "El. pašto gavėjo adresas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 +msgid "E-Mail Sender Address" +msgstr "El. pašto siuntėjo adresas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +msgid "E-Mail Settings" +msgstr "El. pašto nustatymai" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 +msgid "E-Mail Topic" +msgstr "El. pašto tema" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 +msgid "EAP-Method" +msgstr "„EAP-Metodas“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +msgid "Edit" +msgstr "Redaguoti" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +msgid "Edit this network" +msgstr "Redaguoti šį tinklą" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +msgid "Enable/Disable this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +msgid "Enabled" +msgstr "Įjungta" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +msgid "Encryption" +msgstr "Šifravimas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 +msgid "" +"External script reference which will be called for automated captive portal " +"logins." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +msgid "FAST" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 +msgid "General Settings" +msgstr "Bendri nustatymai" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 +msgid "Generate a random unicast MAC address for each uplink connection." +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 +msgid "Grant access to LuCI app travelmate" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "" +"How long should travelmate wait for a successful wlan uplink connection." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Identity" +msgstr "Tapatybė" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +msgid "Ignore BSSID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" +msgstr "Informacija" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Interface Timeout" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 +msgid "Interface Wizard" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 +msgid "Last Run" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +msgid "Limit AutoAdd" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 +msgid "Limit VPN processing" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 +msgid "Limit VPN processing to certain interfaces." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +msgid "" +"Limit the maximum number of automatically added open uplinks. To disable " +"this limitation set it to '0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 +msgid "Limit the nearby scan results to process only the strongest uplinks." +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +msgid "MAC Address" +msgstr "„MAC“ adresas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Mgmt. Frame Protection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +msgid "Net Error Check" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 +msgid "OWE" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +msgid "On/Off" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 +msgid "Optional" +msgstr "Pasirenkamas" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 +msgid "Overall Timeout" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 +msgid "Overall retry timeout in seconds." +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 +msgid "Overview" +msgstr "Apžiūra" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +msgid "" +"Overview of all configured uplinks for travelmate. You can edit, remove or " +"prioritize existing uplinks by drag & drop and scan for new ones.<br /> " +"The currently used uplink connection is emphasized in <span style=\"color:" +"rgb(51, 119, 204);font-weight:bold\">blue</span>, an encrypted VPN uplink " +"connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:" +"bold\">green</span>." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +msgid "PAP" +msgstr "„PAP“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +msgid "Password" +msgstr "Slaptažodis" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 +msgid "Password of Private Key" +msgstr "Privataus rakto slaptažodis" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 +msgid "Path to CA-Certificate" +msgstr "Kelias į „CA-Sertifikatas“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 +msgid "Path to Client-Certificate" +msgstr "Kelias į „Kliento-Sertifikatas“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 +msgid "Path to Private Key" +msgstr "Kelias į privatų raktą" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"<em>mstmp</em> package.<br /><p> </p>" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 +msgid "ProActive Uplink Switch" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 +msgid "" +"Proactively scan and switch to a higher prioritized uplink, despite of an " +"already existing connection." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 +msgid "QR-Code Overview" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "Radio Selection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 +msgid "Randomize MAC Addresses" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 +msgid "Remove" +msgstr "Pašalinti" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +msgid "" +"Render the QR-Code of the selected Access Point to comfortably transfer the " +"WLAN credentials to your mobile devices." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "Repeat Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Required" +msgstr "Reikalaujama/Privaloma" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 +msgid "Restart Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 +msgid "Retry limit to connect to an uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 +msgid "Run Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 +msgid "SSID" +msgstr "„SSID“" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 +msgid "SSID (hidden)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 +msgid "Save" +msgstr "Išsaugoti" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 +msgid "Scan Limit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 +msgid "Settings" +msgstr "Nustatymai" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 +msgid "" +"Space separated list of additional arguments passed to the Auto Login " +"Script, i.e. username and password" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "Station Interfaces" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 +msgid "Station MAC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 +msgid "The logical vpn network interface like 'wg0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "" +"The selected URL will be used for connectivity- and captive portal checks." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "" +"The selected user agent will be used for connectivity- and captive portal " +"checks." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:29 +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24 +msgid "" +"To use Travelmate, you have to set up an uplink interface once. This wizard " +"creates an IPv4- and an IPv6 alias network interface with all required " +"network- and firewall settings." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 +msgid "Topic for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 +msgid "Travelmate" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +msgid "Treat missing internet availability as an error." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 +msgid "Trigger Delay" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 +msgid "Use system certificates" +msgstr "Naudoti sistemos sertifikatus" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 +msgid "VPN connections will be managed by travelmate." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 +msgid "VPN processing" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 +msgid "WPA/WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +msgid "WPA2 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +msgid "WPA2/WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +msgid "WPA2/WPA3 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +msgid "WPA3 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 +msgid "Wireless Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 +msgid "Wireless Settings" +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 +msgid "Wireless Stations" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +msgid "none" +msgstr "joks" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/mr/travelmate.po b/applications/luci-app-travelmate/po/mr/travelmate.po index 423a0b98ec..e542f2e21e 100644 --- a/applications/luci-app-travelmate/po/mr/travelmate.po +++ b/applications/luci-app-travelmate/po/mr/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "डिव्हाइस" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "डिसमिस करा" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "आढावा" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "संकेतशब्द" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/ms/travelmate.po b/applications/luci-app-travelmate/po/ms/travelmate.po index 91c6b5d931..b85423f6e5 100644 --- a/applications/luci-app-travelmate/po/ms/travelmate.po +++ b/applications/luci-app-travelmate/po/ms/travelmate.po @@ -14,105 +14,105 @@ msgstr "" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +640,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/nb_NO/travelmate.po b/applications/luci-app-travelmate/po/nb_NO/travelmate.po index a26e51d5e2..05364d4c7f 100644 --- a/applications/luci-app-travelmate/po/nb_NO/travelmate.po +++ b/applications/luci-app-travelmate/po/nb_NO/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-22 19:53+0000\n" +"PO-Revision-Date: 2023-10-10 20:50+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/nb_NO/>\n" @@ -8,111 +8,111 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.10-dev\n" +"X-Generator: Weblate 5.1-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Ytterligere innstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Enhet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" -msgstr "" +msgstr "Avslå" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Dra for å endre rekkefølge" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-postprofil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-postsenderadresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-postemne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" -msgstr "" +msgstr "Rediger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" -msgstr "" +msgstr "Rediger dette nettverket" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" -msgstr "Påskrudd" +msgstr "Aktivert" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Generelle innstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Info" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Sist kjørt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,33 @@ msgstr "" msgid "Log View" msgstr "Loggvisning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" -msgstr "" +msgstr "MAC-adresse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" -msgstr "" +msgstr "MS-CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 +#, fuzzy msgid "MSCHAPV2" -msgstr "" +msgstr "MS-CHAPv2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "Oversikt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,213 +406,231 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Passord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 #, fuzzy msgid "Run Flags" msgstr "Kjøringsflagg" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Lagre" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Innstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status/versjon" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -623,20 +642,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,7 +673,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -667,7 +686,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -675,178 +694,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Utløserforsinkelse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -854,35 +873,35 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 #, fuzzy msgid "none" msgstr "ingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/nl/travelmate.po b/applications/luci-app-travelmate/po/nl/travelmate.po index 6e3a03cee4..08a15aedba 100644 --- a/applications/luci-app-travelmate/po/nl/travelmate.po +++ b/applications/luci-app-travelmate/po/nl/travelmate.po @@ -14,52 +14,52 @@ msgstr "" msgid "-- AP Selection --" msgstr "-- AP Selectie --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "AP QR-codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Uplink %q toevoegen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Uplink toevoegen..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Aanvullende instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Extra triggervertraging in seconden voordat de verwerking van reisgenoten " "begint." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonieme identiteit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Authenticatie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Automatisch toegevoegde open uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Automatisch inloggen Script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Open uplinks automatisch toevoegen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -68,7 +68,7 @@ msgstr "" "mislukte inlogpogingen. <br /> De standaardwaarde '0' schakelt deze functie " "uit." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -76,7 +76,7 @@ msgstr "" "Voeg automatisch open uplinks zoals hotel captive portals toe aan uw " "draadloze configuratie." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -84,7 +84,7 @@ msgstr "" "Schakel de uplink automatisch uit na <em>n</em> minuten, b.v. voor getimede " "verbindingen. <br /> De standaardwaarde van '0' schakelt deze functie uit." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -93,31 +93,31 @@ msgstr "" "Beheer automatisch VPN-verbindingen.<br /> Let op: deze functie vereist de " "aanvullende configuratie van <em>Wireguard</em> of <em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Captive Portal-detectie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Captive Portal URL" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanaal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -125,7 +125,7 @@ msgstr "" "Controleer de internetbeschikbaarheid, behandel captive portal-omleidingen " "en houd de uplinkverbinding 'levend'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -135,141 +135,141 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" "Configuratie van het Travelmate-pakket om de functionaliteit van de " -"reisrouter in te schakelen. Raadpleeg voor meer informatie <a href=\"https" -"://github.com/openwrt/packages/blob/master/net/travelmate/files/README.md\" " +"reisrouter in te schakelen. Raadpleeg voor meer informatie <a href=\"https://" +"github.com/openwrt/packages/blob/master/net/travelmate/files/README.md\" " "target=\"_blank\" rel=\"noreferrer noopener\" > de online documentatie </a>. " "<br /> <em>Let op:</em> Roep bij de eerste start eenmalig de 'Interface " "Wizard' op om de benodigde netwerk- en firewall-instellingen te maken." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Verbinding einde" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Einde van de verbinding verloopt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Verbindingslimiet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Verbinding starten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Verbinding Begin Vervalt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Apparaat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Naam apparaat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Uitgeschakeld" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Afwijzen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Slepen om te herschikken" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "E-mail haak" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail profiel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "E-Mail adres van ontvanger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Mail adres van verzender" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Email instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-Mail onderwerp" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-Methode" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Bewerk" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Dit netwerk bewerken" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Schakel de Travelmate-service in." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Activeer uitgebreide logs in geval van verwerkingsfouten." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Dit netwerk in-/uitschakelen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Ingeschakeld" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Versleuteling" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Ext. Haken" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -277,16 +277,16 @@ msgstr "" "Externe scriptreferentie die wordt aangeroepen voor geautomatiseerde captive " "portal-aanmeldingen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "SNEL" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Algemene instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "Genereer een willekeurig unicast MAC-adres voor elke uplinkverbinding." @@ -294,30 +294,30 @@ msgstr "Genereer een willekeurig unicast MAC-adres voor elke uplinkverbinding." msgid "Grant access to LuCI app travelmate" msgstr "Toegang verlenen tot LuCI app travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Hoe lang moet Travelmate wachten op een succesvolle WLAN-uplinkverbinding." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identiteit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Negeer BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informatie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Interface naam" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Interface-time-out" @@ -325,27 +325,27 @@ msgstr "Interface-time-out" msgid "Interface Wizard" msgstr "Interface Wizard" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Interface Wizard..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Laatst gedraaid" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Beperk AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Beperk VPN-verwerking" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Beperk VPN-verwerking tot bepaalde interfaces." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -353,7 +353,7 @@ msgstr "" "Beperk het maximum aantal automatisch toegevoegde open uplinks. Om deze " "beperking uit te schakelen zet u deze op '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Beperk de scanresultaten in de buurt om alleen de sterkste uplinks te " @@ -363,26 +363,26 @@ msgstr "" msgid "Log View" msgstr "Logboekweergave" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-adres" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Mgmt. Frame Bescherming" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -390,7 +390,7 @@ msgstr "" "Minimale signaalkwaliteitsdrempel als percentage voor voorwaardelijke uplink " "(dis-) verbindingen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Netto foutcontrole" @@ -398,24 +398,24 @@ msgstr "Netto foutcontrole" msgid "No travelmate related logs yet!" msgstr "Nog geen travelmate gerelateerde logs!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "SCHULDIG ZIJN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Aan/Uit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Optioneel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Algemene time-out" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Totale time-out voor opnieuw proberen in seconden." @@ -423,7 +423,7 @@ msgstr "Totale time-out voor opnieuw proberen in seconden." msgid "Overview" msgstr "Overzicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -436,51 +436,51 @@ msgstr "" "uplinks bewerken, verwijderen of prioriteit geven door & te slepen en " "naar nieuwe te scannen.<br /> De momenteel gebruikte uplinkverbinding wordt " "benadrukt in <span style=\"color:rgb(51, 119, 204);font-weight:bold\">blauw</" -"span>, een gecodeerde VPN-uplinkverbinding wordt benadrukt in <span style=" -"\"color:rgb(68, 170, 68);font-weight:bold\">groen</span>." +"span>, een gecodeerde VPN-uplinkverbinding wordt benadrukt in <span " +"style=\"color:rgb(68, 170, 68);font-weight:bold\">groen</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Wachtwoord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Wachtwoord van privésleutel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Pad naar CA-certificaat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Pad naar cliënt-certificaat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Pad naar privésleutel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Installeer het aparte 'qrencode' pakket." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -488,11 +488,11 @@ msgstr "" "Let op: voor e-mailmeldingen is de afzonderlijke installatie van het " "<em>mstmp</em>-pakket vereist.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive Uplink-schakelaar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -500,35 +500,35 @@ msgstr "" "Proactief scannen en overschakelen naar een uplink met hogere prioriteit, " "ondanks een reeds bestaande verbinding." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "Profiel gebruikt door 'msmtp' voor e-mailberichten over reisgenoten." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR-code overzicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Radio Selectie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Randomiseer MAC-adressen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Ontvangeradres voor e-mailmeldingen van reisgenoten." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Verwijder" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Verwijder dit netwerk" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -536,82 +536,82 @@ msgstr "" "Geef de QR-code van het geselecteerde toegangspunt weer om de WLAN-" "referenties gemakkelijk naar uw mobiele apparaten over te dragen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Scan herhalen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Vereist" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Interface opnieuw opstarten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Beperk reisgenoot tot een enkele radio of wijzig de algehele scanvolgorde." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Limiet voor opnieuw proberen om verbinding te maken met een uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Vlaggen uitvoeren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (verborgen)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Opslaan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Scanlimiet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Scan aan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Scriptargumenten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Afzenderadres voor e-mailmeldingen van reisgenoten." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "Verzendt e-mailmeldingen na elke succesvolle uplinkverbinding." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Serviceprioriteit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Signaalkwaliteitsdrempel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -619,41 +619,59 @@ msgstr "" "Door spatie gescheiden lijst van aanvullende argumenten die zijn doorgegeven " "aan het Auto Inloggen Script, d.w.z. gebruikersnaam en wachtwoord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Draadloze scan starten op '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "Station-ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Stationsinterfaces" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "Station MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status / Versie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Kracht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "De QR-code kon niet worden gegenereerd!" @@ -665,22 +683,22 @@ msgstr "De naam van de firewallzone" msgid "The interface metric" msgstr "De interface-metriek" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "De logische vpn-netwerkinterface zoals 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "De geselecteerde URL wordt gebruikt voor connectiviteits- en captive portal-" "controles." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "De geselecteerde prioriteit wordt gebruikt voor Travelmate-processen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -702,7 +720,7 @@ msgstr "De uplink-interface is bijgewerkt." msgid "The uplink interface name" msgstr "De naam van de uplink-interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -720,7 +738,7 @@ msgstr "" "Deze wizard creëert een IPv4- en een IPv6 alias netwerkinterface met alle " "vereiste netwerk- en firewallinstellingen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Onderwerp voor travelmate notificatie E-Mails." @@ -728,179 +746,179 @@ msgstr "Onderwerp voor travelmate notificatie E-Mails." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Travelmate-instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Behandel ontbrekende internetbeschikbaarheid als een fout." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Trigger vertraging" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Gebruik systeemcertificaten" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Gebruik het opgegeven MAC-adres voor deze uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Gebruikersagent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "VPN-haak" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN-interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN-service" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "VPN-instellingen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN-verbindingen worden beheerd door travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN-verwerking" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Valideer het servercertificaat met behulp van de ingebouwde systeem-CA-bundel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Uitgebreide logboekregistratie voor foutopsporing" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA-vlaggen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Draadloos scannen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Draadloze instellingen" @@ -908,33 +926,33 @@ msgstr "Draadloze instellingen" msgid "Wireless Stations" msgstr "Draadloze stations" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "geen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "gebruik beide radio's, normale sorteervolgorde (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "gebruik beide radio's, omgekeerde sorteervolgorde (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "gebruik alleen de eerste radio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "gebruik alleen de tweede radio (radio1)" diff --git a/applications/luci-app-travelmate/po/pl/travelmate.po b/applications/luci-app-travelmate/po/pl/travelmate.po index d36b20b9ba..6d4ed2a409 100644 --- a/applications/luci-app-travelmate/po/pl/travelmate.po +++ b/applications/luci-app-travelmate/po/pl/travelmate.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2023-03-09 19:13+0000\n" -"Last-Translator: Matthaiks <kitynska@gmail.com>\n" +"PO-Revision-Date: 2023-11-08 19:32+0000\n" +"Last-Translator: Xtremo3 <a.lewicki95@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/pl/>\n" "Language: pl\n" @@ -9,58 +9,58 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 5.2-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Wybór AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Kody QR AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Dodaj Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Dodaj Uplink..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Dodatkowe ustawienia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach zanim travelmate zacznie " "przetwarzać." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Tożsamość anonimowa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Automatycznie dodane otwarte łącza uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Automatyczny skrypt logowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Automatycznie dodawaj otwarte łącza uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -68,7 +68,7 @@ msgstr "" "Automatyczne (ponowne) włączenie uplink po <em>n</em> minutach, np. po " "nieudanych próbach logowania.<br /> Domyślna wartość '0' wyłącza tę funkcję." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -76,7 +76,7 @@ msgstr "" "Automatycznie dodawaj otwarte łącza zwrotne takie jak strony logowania w " "sieci w hotelu do swojej bezprzewodowej konfiguracji." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -84,7 +84,7 @@ msgstr "" "Automatycznie wyłącza łącze uplink po <em>n</em> minutach, np. dla połączeń " "czasowych.<br /> Domyślna wartość '0' wyłącza tę funkcję." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -93,31 +93,31 @@ msgstr "" "Automatycznie obsługuj połączenia VPN.<br /> Uwaga: ta funkcja wymaga " "dodatkowej konfiguracji <em>Wireguard</em> lub <em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Wykrywanie logowania w sieci" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Adres URL portalu przechwytującego" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanał" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -125,7 +125,7 @@ msgstr "" "Sprawdź dostępność internetu, obsługuj przekierowania do portalu " "przechwytującego i utrzymuj połączenie uplink 'aktywne'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -141,137 +141,137 @@ msgstr "" "<em>Uwaga: </em> przy pierwszym uruchomieniu wywołaj raz 'Kreatora " "interfejsu', aby dokonać niezbędnych ustawień sieci i zapory." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Koniec połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Wygaśnięcie zakończenia połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Limit połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Rozpoczęcie połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Wygaśnięcie zakończenia połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Urządzenie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Nazwa urządzenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Wyłączone" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" -msgstr "Odrzuć" +msgstr "Zamknij" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Przeciągnij, aby zmienić kolejność" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" -msgstr "E-Mail Hook" +msgstr "Hook e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Profil e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Adres e-mail odbiorcy" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Adres e-mail nadawcy" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Ustawienia e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Temat e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Edytuj" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Edytuj tę sieć" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Włącz usługę Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Włącz rejestrowanie debugowania w przypadku wystąpienia błędów w " "przetwarzaniu." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Włącz/wyłącz tę sieć" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Szyfrowanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" -msgstr "Zewnętrzne Hooks'y" +msgstr "Zewnętrzne hooki" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -279,16 +279,16 @@ msgstr "" "Nawiązanie do zewnętrznego skryptu który będzie użyty do automatycznego " "logowania w sieci." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "FAST" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Ustawienia główne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "Wygeneruj losowy adres MAC unicast dla każdego połączenia uplink." @@ -296,30 +296,30 @@ msgstr "Wygeneruj losowy adres MAC unicast dla każdego połączenia uplink." msgid "Grant access to LuCI app travelmate" msgstr "Przyznaj dostęp LuCI do aplikacji Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Jak długo travelmate powinien czekać na udane połączenie bezprzewodowe." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Tożsamość" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignoruj BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informacje" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Nazwa interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Limit czasu interfejsu" @@ -327,27 +327,27 @@ msgstr "Limit czasu interfejsu" msgid "Interface Wizard" msgstr "Kreator interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Kreator interfejsu..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Ostatnie uruchomienie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Ogranicz automatyczne dodawanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Ogranicz przetwarzanie VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Ogranicz przetwarzanie VPN do określonych interfejsów." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -355,7 +355,7 @@ msgstr "" "Ogranicz maksymalną liczbę automatycznie dodawanych otwartych łączy uplink. " "Aby wyłączyć to ograniczenie, ustaw je na '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Ogranicz wyniki skanowania w pobliżu, aby przetwarzać tylko najsilniejsze " @@ -365,26 +365,26 @@ msgstr "" msgid "Log View" msgstr "Widok dziennika" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Adres MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Ochrona ramek zarządzania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -392,7 +392,7 @@ msgstr "" "Minimalny próg jakości sygnału jako wartość procentowa dla warunkowych " "(ujemnych) połączeń." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Kontrola błędów sieci" @@ -400,24 +400,24 @@ msgstr "Kontrola błędów sieci" msgid "No travelmate related logs yet!" msgstr "Brak powiązanych dzienników travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Wł./Wył." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opcjonalne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Ogólny limit czasu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Ogólny limit czasu powtarzania w sekundach." @@ -425,7 +425,7 @@ msgstr "Ogólny limit czasu powtarzania w sekundach." msgid "Overview" msgstr "Przegląd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -442,60 +442,60 @@ msgstr "" "uplink jest podkreślone na <span style=\"color:rgb(68, 170, 68);font-weight:" "bold\">zielono</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Hasło" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Hasło klucza prywatnego" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Ścieżka do certyfikatu klienta" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Ścieżka do klucza prywatnego" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Zainstaluj osobny pakiet „qrencode”." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -"Uwaga: Powiadomienia e-mail wymagają oddzielnej konfiguracji <em>mstmp</em> " -"pakietu. <br /> <p>   </p>" +"Uwaga: powiadomienia e-mail wymagają oddzielnej konfiguracji pakietu " +"<em>mstmp</em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "Przełącznik połączenia ProActive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -503,35 +503,35 @@ msgstr "" "Aktywnie skanuj i przełączaj na łącze o wyższym priorytecie, pomimo już " "istniejącego połączenia." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "Profil używany przez \"msmtp\" do powiadomień travelmate e-mail." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Przegląd kodów QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Wybór radia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Losowe adresy MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Adres odbiorcy wiadomości e-mail z powiadomieniem o travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Usuń" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Usuń tę sieć" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -539,83 +539,83 @@ msgstr "" "Renderuj kod QR wybranego punktu dostępowego, aby w wygodny sposób przesłać " "dane uwierzytelniające WLAN do urządzeń mobilnych." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Powtórz skanowanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Wymagane" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Restart interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Ogranicz travelmate do jednego radia lub zmień ogólną kolejność skanowania." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Limit powtórzeń do połączenia." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Flagi uruchomieniowe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (ukryty)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Ograniczenie skanowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Skanowanie włączone" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Argumenty skryptu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Adres nadawcy dla powiadomień e-mail dla travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Wysyła powiadomienie e-mail po każdym udanym połączeniu przez sieć uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Priorytet usługi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Ustawienia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Próg jakości sygnału" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -623,41 +623,63 @@ msgstr "" "Rozdzielona spacjami lista dodatkowych argumentów przekazanych do skryptu " "automatycznego logowania, np. nazwa użytkownika i hasło" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "Standardowa usługa VPN" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "Standardowy interfejs VPN" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" +"Standardowy interfejs VPN, który będzie automatycznie dodawany do nowych " +"profili STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" +"Standardowa usługa VPN, która będzie automatycznie dodawana do nowych " +"profili STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Rozpoczynanie skanowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "Identyfikator stacji" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Interfejsy stacji" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "Stacja MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status / Wersja" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Siła" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Nie można wygenerować kodu QR!" @@ -669,22 +691,22 @@ msgstr "Nazwa strefy zapory" msgid "The interface metric" msgstr "Metryka interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "Logiczny interfejs sieci VPN, taki jak 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Wybrany adres URL będzie używany do sprawdzania łączności i portalu " "dostępowego." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "Wybrany priorytet będzie używany w procesach travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -706,7 +728,7 @@ msgstr "Interfejs uplink został zaktualizowany." msgid "The uplink interface name" msgstr "Nazwa interfejsu uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -720,11 +742,11 @@ msgid "" "creates an IPv4- and an IPv6 alias network interface with all required " "network- and firewall settings." msgstr "" -"Aby korzystać z Travelmate, należy raz skonfigurować interfejs uplink. " -"Kreator ten tworzy interfejs sieciowy IPv4- i IPv6 alias z wszystkimi " -"wymaganymi ustawieniami sieci i zapory sieciowej." +"Aby korzystać z Travelmate, musisz raz skonfigurować interfejs łącza uplink. " +"Ten kreator tworzy interfejs sieciowy aliasu IPv4 i IPv6 ze wszystkimi " +"wymaganymi ustawieniami sieci i zapory." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Temat powiadomień e-mail travelmate." @@ -732,179 +754,179 @@ msgstr "Temat powiadomień e-mail travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Ustawienia Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Traktuj brak dostępu do internetu jako błąd." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Użyj certyfikatów systemowych" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Użyj określonego adresu MAC dla tego łącza uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Agent użytkownika" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" -msgstr "VPN Hook" +msgstr "Hook VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "Interfejs VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "Usługa VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Ustawienia VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "Połączenia VPN będą zarządzane przez travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "Przetwarzanie VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Weryfikuj certyfikat serwera za pomocą wbudowanego pakietu systemowego CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Pełne rejestrowanie debugowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Flagi WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Bezprzewodowe skanowanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Ustawienia sieci bezprzewodowej" @@ -912,34 +934,34 @@ msgstr "Ustawienia sieci bezprzewodowej" msgid "Wireless Stations" msgstr "Stacje bezprzewodowe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" -msgstr "brak" +msgstr "Brak" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "używaj obu radiów, normalna kolejność sortowania (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "używaj obu radiów, odwrotna kolejność sortowania (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "używaj tylko pierwszego radia (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "używaj tylko drugiego radia (radio1)" diff --git a/applications/luci-app-travelmate/po/pt/travelmate.po b/applications/luci-app-travelmate/po/pt/travelmate.po index 79f2249821..b8e3ddbcc9 100644 --- a/applications/luci-app-travelmate/po/pt/travelmate.po +++ b/applications/luci-app-travelmate/po/pt/travelmate.po @@ -14,50 +14,50 @@ msgstr "" msgid "-- AP Selection --" msgstr "-- Seleção do AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Adicionar ligação ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Adicionar ligação ascendente..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Configurações adicionais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Identidade anônima" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Ligação ascendente aberta adicionada automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Adicionar ligações ascendentes abertos automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -66,7 +66,7 @@ msgstr "" "minutos, por exemplo, quando as tentativas de login fracassarem. <br /> O " "valor predefinido '0' desativa esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -74,7 +74,7 @@ msgstr "" "Adicionar ligações ascendentes abertas automaticamente, como portais cativos " "de hotéis, à sua configuração wireless." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -83,7 +83,7 @@ msgstr "" "por exemplo, para conexões que forem cronometradas. <br /> A predefinição " "'0' desativa esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -93,31 +93,31 @@ msgstr "" "recurso adicionalmente requer a configuração de <em>Wireguard</em> ou " "<em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Detecção de Portal de Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "URL do portal cativo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -125,7 +125,7 @@ msgstr "" "Verifique o acesso à Internet, lide com os redirecionamentos cativos do " "portal e mantenha a ligação ascendente 'viva'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -141,137 +141,137 @@ msgstr "" "<em> Nota:</em> Na primeira inicialização chame o 'Assistente da interface', " "para fazer as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Validade do fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Início da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Validade do inicio da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Aparelho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Nome do aparelho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Desativado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Dispensar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Arraste para reordenar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "Gancho do e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Perfil de e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Endereço de e-mail do destinatário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Endereço de e-mail do remetente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Configurações do e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Assunto do e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Editar esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Ative o serviço travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Ativa o registo de depuração detalhado para casos de todos os erros de " "processamento." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Ativar/Desativar esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Encriptação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Ganchos externos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -279,16 +279,16 @@ msgstr "" "Referência de script externo que será chamado para logins automatizados de " "portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "RÁPIDO" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Configurações gerais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Gerar um endereço MAC unicast aleatório para cada ligação ascendente da " @@ -298,31 +298,31 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "Conceder acesso ao LuCI ao app travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Quanto tempo o travelmate irá esperar pelo sucesso da ligação ascendente sem " "fio." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identidade" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignore o BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Nome da interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Estouro de Tempo da Interface" @@ -330,27 +330,27 @@ msgstr "Estouro de Tempo da Interface" msgid "Interface Wizard" msgstr "Assistente da Interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Assistente da interface..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Limitar o AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Limitar o processamento de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Limita o processamento da VPN em interfaces determinadas." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -358,7 +358,7 @@ msgstr "" "Limitar a quantidade máxima de ligações ascendentes abertas automaticamente. " "Para desativar esta limitação, defina-a como '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Limitar os resultados da varredura às ligações ascendentes mais próximas e " @@ -368,26 +368,26 @@ msgstr "" msgid "Log View" msgstr "Vista do registo log" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Endereço MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Gestão de proteção de datagrama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -395,7 +395,7 @@ msgstr "" "Limite percentual mínimo da qualidade do sinal para (des)conexões de ligação " "ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Verificação de Erros de Rede" @@ -403,24 +403,24 @@ msgstr "Verificação de Erros de Rede" msgid "No travelmate related logs yet!" msgstr "Ainda não há registos log relacionados com o travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Ligado/Desligado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opcional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Estouro de tempo global em segundos." @@ -428,7 +428,7 @@ msgstr "Estouro de tempo global em segundos." msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -445,48 +445,48 @@ msgstr "" "de VPN criptografada fica destacada na cor <span style=\"color:rgb(68, 170, " "68);font-weight:bold\">verde</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Palavra-passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Palavra-passe da Chave Privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado da AC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Instale o pacote separado 'qrencode'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -494,11 +494,11 @@ msgstr "" "Observação: as notificações do e-mail requerem a configuração separada do " "pacote <em>mstmp</em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "Comutador de ligação ascendente ProActive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -506,38 +506,38 @@ msgstr "" "Analise e mude proativamente para uma ligação ascendente priorizado mais " "alto, apesar de uma conexão já existente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil usado pelo 'msmtp' para a notificação dos e-mails do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Visão geral do código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Seleção do rádio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Randomizar os endereços MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Endereço do e-mail do destinatário para o recebimento das notificações do " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Remover" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Remover esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -545,85 +545,85 @@ msgstr "" "Renderize o código QR do ponto de acesso selecionado para transferir " "confortavelmente as credenciais do WLAN para os seus aparelhos móveis." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Repetir a varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Necessário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Reiniciar interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Restringir o travelmate a um único rádio ou alterar a ordem geral de " "varredura." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Limite de retentiva de conexão com uma ligação ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Flags de Execução" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Limite de varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Argumentos do script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Endereço e-mail do remetente para as notificações do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Envia e-mails de notificação após cada conexão bem-recebida da ligação " "ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Prioridade do serviço" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -631,41 +631,59 @@ msgstr "" "Lista separada por espaços de argumentos adicionais passados ao Script de " "Login Automático, ou seja, nome de utilizador e palavra-passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "A iniciar a varredura sem fio em '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "ID da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Interfaces de estações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "MAC da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Condição geral / versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Força" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "O código QR não pôde ser gerado!" @@ -677,22 +695,22 @@ msgstr "O nome da zona do firewall" msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "A interface lógica de rede vpn como 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "A URL selecionada será utilizada para as verificações do portal de " "conectividade e do portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "A prioridade selecionada será usada pelos processos do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -712,7 +730,7 @@ msgstr "A interface da ligação ascendente foi atualizada." msgid "The uplink interface name" msgstr "O nome da interface da ligação ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -730,7 +748,7 @@ msgstr "" "Este assistente cria uma interface pseudónima de rede IPv4 e de IPv6 com " "todas as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "O assunto do e-mail usado pela notificação do travelmate." @@ -738,179 +756,179 @@ msgstr "O assunto do e-mail usado pela notificação do travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Configurações do Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Atraso do Gatilho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Usar certificados de sistema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Usar o endereço MAC especificado para esta ligação ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Agente do utilizador" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "Gancho de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "Serviço de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Configurações da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "As conexões VPN serão geridas pelo travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "Processamento de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Validar o certificado do servidor por usar o pacote CA do sistema incorporado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Registos detalhados de depuração" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Sinalizadores do WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Configurações da rede sem fio" @@ -918,34 +936,34 @@ msgstr "Configurações da rede sem fio" msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "nenhum" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "usar ambos os rádios, ordem normal de ordenação (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "usar ambos os rádios, ordem inversa de ordenação (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "usar apenas o primeiro rádio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "usar apenas o segundo rádio (radio1)" diff --git a/applications/luci-app-travelmate/po/pt_BR/travelmate.po b/applications/luci-app-travelmate/po/pt_BR/travelmate.po index 56fc83aa56..0bd95f0e93 100644 --- a/applications/luci-app-travelmate/po/pt_BR/travelmate.po +++ b/applications/luci-app-travelmate/po/pt_BR/travelmate.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2023-03-08 10:38+0000\n" -"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"PO-Revision-Date: 2023-11-22 00:07+0000\n" +"Last-Translator: Edison F Carbol <edisonfc@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationstravelmate/pt_BR/>\n" "Language: pt_BR\n" @@ -11,56 +11,56 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.16.2-dev\n" +"X-Generator: Weblate 5.2\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Seleção do AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Adicionar Enlace %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Adicionar o Enlace..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Identidade Anônima" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "O enlace aberto foi adicionado automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Adicionar Automaticamente os Uplinks Abertos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -69,7 +69,7 @@ msgstr "" "tentativas de login fracassarem. <br /> O valor predefinido '0' desativa " "esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -77,7 +77,7 @@ msgstr "" "Adicione automaticamente uplinks abertos, como os usados em portais cativos " "de hotéis na sua configuração sem fio." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -86,7 +86,7 @@ msgstr "" "para conexões que forem cronometradas. <br /> A predefinição '0' desativa " "esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -95,31 +95,31 @@ msgstr "" "Lida com as conexões VPN automaticamente.<br /> Observe que: Este recurso " "requer a configuração adicional do <em>Wireguard</em> ou do <em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Detecção de Portal de Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "URL do Portal Cativo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -127,7 +127,7 @@ msgstr "" "Verifique a disponibilidade da Internet, lide com os redirecionamentos " "cativos do portal e mantenha a conexão do enlace 'viva'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -143,152 +143,152 @@ msgstr "" "<em> Nota:</em> Na primeira inicialização chame o 'Assistente da interface', " "para fazer as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Validade do fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Início da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Validade do inicio da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Nome do dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "Desativado" +msgstr "Desabilitado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Dispensar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Arraste para reordenar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "Gancho do E-Mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail do Perfil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Endereço de E-Mail do Destinatário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Endereço de E-Mail do Remetente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Configurações do e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Assunto do E-Mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Editar esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Ative o serviço travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Ativa o registro de depuração detalhada nos casos de qualquer erro de " "processamento." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Ative/Desative esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Criptografia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Ganchos Externos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "Script externo de referência que será usado para logins automatizados." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "RÁPIDO" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Configurações gerais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "Gere um endereço MAC unicast aleatório para cada enlace da conexão." @@ -296,31 +296,31 @@ msgstr "Gere um endereço MAC unicast aleatório para cada enlace da conexão." msgid "Grant access to LuCI app travelmate" msgstr "Conceda ao aplicativo travelmate acesso ao LuCI" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Quanto tempo o travelmate irá esperar pelo sucesso da conexão sem fio " "externa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identidade" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignore o BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Nome da Interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Estouro de Tempo da Interface" @@ -328,27 +328,27 @@ msgstr "Estouro de Tempo da Interface" msgid "Interface Wizard" msgstr "Assistente da Interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Assistente da Interface..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Limite o AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Limita o processamento da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Limita o processamento da VPN em determinadas interfaces." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -356,7 +356,7 @@ msgstr "" "Limite a quantidade máxima de uplinks abertos automaticamente. Para " "desativar esta limitação, defina-a como '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Limite os resultados da varredura apenas para os enlaces mais próximos e com " @@ -366,26 +366,26 @@ msgstr "" msgid "Log View" msgstr "Exiba o registro log" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Endereço MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Geren. da proteção da moldura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -393,7 +393,7 @@ msgstr "" "Limite percentual mínimo da qualidade do sinal para (des)conexões de enlaces " "para fora." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Verificação de Erros da Rede" @@ -401,24 +401,24 @@ msgstr "Verificação de Erros da Rede" msgid "No travelmate related logs yet!" msgstr "Ainda não há registos log relacionados com o travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Ligado/Desligado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opcional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Estouro de tempo global em segundos." @@ -426,7 +426,7 @@ msgstr "Estouro de tempo global em segundos." msgid "Overview" msgstr "Visão geral" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -443,48 +443,48 @@ msgstr "" "destacada na cor <span style=\"color:rgb(68, 170, 68);font-weight:" "bold\">verde</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Senha" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Senha da chave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Caminho para o certificado do cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Caminho para a chave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Instale o pacote 'qrencode' separado." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -492,11 +492,11 @@ msgstr "" "Observação: As notificações do e-mail requerem a configuração separada do " "pacote <em>mstmp</em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive Switch de Ligação Acendente (Uplink)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -504,38 +504,38 @@ msgstr "" "Faça uma varredura de forma proativa e selecione um switch com prioridade " "mais alta, mesmo que já exista uma conexão." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil usado pelo 'msmtp' para a notificação dos E-mails do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Visão geral do código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Seleção do Rádio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Randomize os endereços MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Endereço do E-Mail do destinatário para o recebimento das notificações do " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Remover" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Remova esta rede" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -543,83 +543,83 @@ msgstr "" "Renderize o código QR do Ponto de Acesso selecionado para transferir " "confortavelmente as credenciais do WLAN para os seus dispositivos móveis." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Repetir a varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Necessário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Reinicie a interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Restrinja o travelmate para um único rádio ou altere a ordem geral da " "varredura." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Limite de novas tentativas de conexão com um enlace externo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Executar Flags" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Salvar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Limite da varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Argumentos do script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Endereço E-Mail do remetente para as notificações do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "Envia e-mails de notificação após cada conexão bem-recebida do enlace." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Prioridade do serviço" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -627,41 +627,59 @@ msgstr "" "Lista de argumentos adicionais separados por espaço que serão passados ao " "Script de Login Automático, por exemplo, nome de usuário e senha" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Iniciando a varredura sem fio em '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "ID da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Interfaces das estações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "MAC da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Condição Geral / Versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Força" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "O Código QR não pôde ser gerado!" @@ -673,22 +691,22 @@ msgstr "O nome da zona do firewall" msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "A interface lógica da rede vpn como 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "A URL selecionada será utilizada para as verificações do portal de " "conectividade e do portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "A prioridade selecionada será usada pelos processos do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -708,7 +726,7 @@ msgstr "A interface do enlace foi atualizada." msgid "The uplink interface name" msgstr "O nome da interface do enlace" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -726,7 +744,7 @@ msgstr "" "enlace. Este assistente cria uma interface de rede IPv4 e uma interface IPv6 " "com todas as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "O assunto do E-mail usado pela notificação do travelmate." @@ -734,179 +752,179 @@ msgstr "O assunto do E-mail usado pela notificação do travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Configurações do Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Gatilho de Atraso" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Utilize os certificados do sistema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Use o endereço MAC definido para este enlace." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Agente do usuário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "Serviço VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Configurações da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "As conexões da VPN serão gerenciadas pelo travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "Processando a VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Valide o certificado do servidor usando o pacote CA embutido do sistema" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Registros Detalhados de Depuração" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Sinalizadores do WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Configurações da rede sem fio" @@ -914,34 +932,34 @@ msgstr "Configurações da rede sem fio" msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "nenhum" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "use ambos os rádios, na ordem normal de ordenação (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "use ambos os rádios, na ordem inversa da ordenação (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "use apenas o primeiro rádio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "use apenas o segundo rádio (radio1)" diff --git a/applications/luci-app-travelmate/po/ro/travelmate.po b/applications/luci-app-travelmate/po/ro/travelmate.po index 9729f3503f..13bbd20835 100644 --- a/applications/luci-app-travelmate/po/ro/travelmate.po +++ b/applications/luci-app-travelmate/po/ro/travelmate.po @@ -15,52 +15,52 @@ msgstr "" msgid "-- AP Selection --" msgstr "-- Selecția AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Coduri QR AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Adăugare legătură ascendentă %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Adăugați legătura ascendentă..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Setări suplimentare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Întârziere suplimentară de declanșare în secunde înainte de începerea " "procesării travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Identitate anonimă" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autentificare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Auto Adăugat Deschis Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Script de conectare automată" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Adăugare automată a legăturilor deschise" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -69,7 +69,7 @@ msgstr "" "em> minute, de exemplu, după încercări eșuate de conectare.<br /> Valoarea " "implicită de '0' dezactivează această funcție." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -77,7 +77,7 @@ msgstr "" "Adăugați automat legăturile ascendente deschise, cum ar fi portalurile " "captive ale hotelurilor, la configurația dumneavoastră wireless." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -86,7 +86,7 @@ msgstr "" "pentru conexiuni cronometrate.<br /> Valoarea implicită de '0' dezactivează " "această funcție." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -96,31 +96,31 @@ msgstr "" "funcție necesită configurarea suplimentară a <em>Wireguard</em> sau " "<em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Detectarea portalului captiv" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Portal captiv URL" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Canal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -128,7 +128,7 @@ msgstr "" "Verificați disponibilitatea internetului, gestionați redirecționările " "portalului captiv și mențineți conexiunea ascendentă \"vie\"." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -145,137 +145,137 @@ msgstr "" "o dată \"Interface Wizard\" (Expertul de interfață), pentru a face setările " "necesare pentru rețea și firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Capătul conexiunii" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Expirarea sfârșitului conexiunii" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Limita de conectare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Conexiune Start" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Conexiune Start Expirare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Dispozitiv" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Numele dispozitivului" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Dezactivat" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Închideți" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Trageți pentru a reordona" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "E-mail cârlig" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Profil de e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Adresa de e-mail a destinatarului" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Adresa expeditorului de e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Setări e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Subiect E-Mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Metoda-EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Editați" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Editați această rețea" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Activați serviciul Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Activați jurnalizarea verbală a depanării în cazul în care apar erori de " "procesare." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Activați/Dezactivați această rețea" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "activat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Criptare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Cârlige externe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -283,16 +283,16 @@ msgstr "" "Referința scriptului extern care va fi apelat pentru autentificarea automată " "a portalului captiv." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "RAPID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Setări generale" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Generați o adresă MAC unicast aleatorie pentru fiecare conexiune uplink." @@ -301,31 +301,31 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "Acordă acces la aplicația LuCI travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Cât timp trebuie să aștepte travelmate pentru o conexiune wlan uplink " "reușită." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identitate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignoră BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Informație" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Numele interfeței" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Timeout interfață" @@ -333,27 +333,27 @@ msgstr "Timeout interfață" msgid "Interface Wizard" msgstr "Expertul de interfață" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Expertul de interfață..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Ultima rulare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Limitați AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Limitarea procesării VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Limitați procesarea VPN la anumite interfețe." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -361,7 +361,7 @@ msgstr "" "Limitați numărul maxim de legături ascendente deschise adăugate automat. " "Pentru a dezactiva această limitare, setați-o la '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Limitați rezultatele scanării din apropiere pentru a procesa doar cele mai " @@ -371,26 +371,26 @@ msgstr "" msgid "Log View" msgstr "Vizualizare jurnal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "Adresa MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Mgmt. Protecție cadru" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -398,7 +398,7 @@ msgstr "" "Pragul minim de calitate a semnalului, exprimat în procente, pentru " "conexiunile condiționate pe legătura ascendentă (dis-)." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Verificarea erorilor de rețea" @@ -406,24 +406,24 @@ msgstr "Verificarea erorilor de rețea" msgid "No travelmate related logs yet!" msgstr "Nu există încă jurnale legate de travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Pornit/Oprit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Opțional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Timpul total de așteptare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Timpul total de reintentare în secunde." @@ -431,7 +431,7 @@ msgstr "Timpul total de reintentare în secunde." msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -448,48 +448,48 @@ msgstr "" "ascendentă VPN criptată este evidențiată în <span style=\"color:rgb(68, 170, " "68);font-weight:bold\">green</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Parolă" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Parola cheii private" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Calea către certificatul CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Cale de acces la certificatul clientului" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Calea către cheia privată" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Vă rugăm să instalați pachetul separat 'qrencode'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -497,11 +497,11 @@ msgstr "" "Vă rugăm să rețineți: Notificările prin e-mail necesită configurarea " "separată a <em>mstmp</em> pachetului.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "Comutator ProActive Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -509,37 +509,37 @@ msgstr "" "Scanarea proactivă și trecerea la o legătură ascendentă cu prioritate mai " "mare, în ciuda unei conexiuni deja existente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Profilul utilizat de \"msmtp\" pentru mesajele electronice de notificare " "Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Prezentare generală a codurilor QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Selecție radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Randomizarea adreselor MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Adresa destinatarului pentru e-mailurile de notificare Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Eliminați" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Eliminați această rețea" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -547,85 +547,85 @@ msgstr "" "Redați codul QR al punctului de acces selectat pentru a transfera în mod " "confortabil acreditările WLAN către dispozitivele dvs. mobile." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Repetați scanarea" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Necesar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Reporniți interfața" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Limitați travelmate la un singur radio sau modificați ordinea generală de " "scanare." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Limita de reîncercări pentru conectarea la o legătură ascendentă." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Fixați indicatoarele" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (ascuns)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Salvați" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Limita de scanare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Scanare pe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Argumente de script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Adresa expeditorului pentru e-mailurile de notificare Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Trimite e-mailuri de notificare după fiecare conectare reușită a legăturii " "ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Prioritatea serviciului" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Setări" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Pragul de calitate a semnalului" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -633,41 +633,59 @@ msgstr "" "Listă separată prin spații a argumentelor suplimentare transmise scriptului " "de autentificare automată, de exemplu numele de utilizator și parola" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Se pornește scanarea wireless pe '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "ID-ul stației" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Interfețe de stație" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "Stație MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Stare / Versiune" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Putere" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Codul QR nu a putut fi generat!" @@ -679,22 +697,22 @@ msgstr "Numele zonei de firewall" msgid "The interface metric" msgstr "Metrica interfeței" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "Interfața logică de rețea VPN, cum ar fi \"wg0\"." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "URL-ul selectat va fi utilizat pentru verificarea conectivității și a " "portalului captiv." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "Prioritatea selectată va fi utilizată pentru procesele Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -715,7 +733,7 @@ msgstr "Interfața de legătură ascendentă a fost actualizată." msgid "The uplink interface name" msgstr "Numele interfeței de legătură ascendentă" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -734,7 +752,7 @@ msgstr "" "uplink. Acest asistent creează o interfață de rețea IPv4 și o interfață " "alias IPv6 cu toate setările de rețea și de firewall necesare." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Subiect pentru e-mailurile de notificare Travelmate." @@ -742,179 +760,179 @@ msgstr "Subiect pentru e-mailurile de notificare Travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Setări Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Tratați lipsa disponibilității internetului ca pe o eroare." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Intârzierea declanșării" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Utilizați certificatele de sistem" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Utilizați adresa MAC specificată pentru această legătură ascendentă." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Agent utilizator" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "Cârlig VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "Interfața VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "Serviciul VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Setări VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "Conexiunile VPN vor fi gestionate de Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "Prelucrarea VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Validați certificatul serverului utilizând pachetul CA de sistem încorporat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Jurnalizare Verbală de Depanare" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Indicatori WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Scanare wireless" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Setări wireless" @@ -922,35 +940,35 @@ msgstr "Setări wireless" msgid "Wireless Stations" msgstr "Stații Wireless" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "niciunul" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "folosiți ambele radiouri, ordine de sortare normală (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" "utilizați ambele radiouri, în ordine inversă de sortare (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "utilizați numai primul radio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "utilizați numai al doilea radio (radio1)" diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index 68f04bd0b5..4a4b0abce7 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: travelmate\n" "POT-Creation-Date: 2017-12-07 21:00+0300\n" -"PO-Revision-Date: 2023-04-03 07:17+0000\n" -"Last-Translator: AHOHNMYC <lqwh2h2cwa@protonmail.com>\n" +"PO-Revision-Date: 2023-10-25 13:51+0000\n" +"Last-Translator: st7105 <st7105@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/ru/>\n" "Language: ru\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 5.1.1\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -20,50 +20,50 @@ msgstr "" msgid "-- AP Selection --" msgstr "-- Выбор точки доступа --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "QR-Коды точки доступа..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Добавить канал %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Добавить канал..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Дополнительная задержка в секундах до запуска TravelMate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Анонимная идентификация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Автоматически добавленный открытый Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Скрипт автоматического входа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Автодобавление открытых Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -72,7 +72,7 @@ msgstr "" "после неудачных попыток входа.<br /> Значение по умолчанию '0' отключает эту " "функцию." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -80,7 +80,7 @@ msgstr "" "Автоматическое добавление открытых Uplink, таких как Captive Portal отелей, " "в конфигурацию беспроводной сети." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -88,7 +88,7 @@ msgstr "" "Автоматическое отключение Uplink через <em>n</em> минут, н-р, для соединений " "по таймеру.<br /> Значение по умолчанию '0' отключает эту функцию." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -98,31 +98,31 @@ msgstr "" "функция требует дополнительной настройки <em>Wireguard</em> или <em>OpenVPN</" "em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Обнаружение Captive Portal-а" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Адрес Captive Portal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Канал" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -130,7 +130,7 @@ msgstr "" "Проверять доступность Интернета, обрабатывать перенаправления Captive Portal " "и поддерживать \"живое\" подключение к восходящему каналу." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -147,135 +147,135 @@ msgstr "" "пожалуйста, вызовите \"Мастер интерфейсов\" один раз, чтобы выполнить " "необходимые настройки сети и брандмауэра." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Конец соединения" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Истечение срока действия соединения" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Ограничение соединений" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Начало соединения" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Истечение срока действия начала соединения" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Устройство" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Имя устройства" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Отключено" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Закрыть" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Перетащите, чтобы изменить порядок" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "Хук электронной почты" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "Профиль электронной почты" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "Адрес получателя" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Адрес отправителя" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "Настройки электронной почты" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Тема" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Метод EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Изменить" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Изменить эту сеть" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Включить службу travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Включить подробное формирование отчёта на случай возникновения ошибок." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Включить/выключить эту сеть" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Включен" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Шифрование" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Внеш. хуки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -283,16 +283,16 @@ msgstr "" "Ссылка на внешний скрипт, который будет вызываться автоматически при " "авторизации на Captive Portal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "FAST" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" -msgstr "Общие настройки" +msgstr "Основные настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Генерирование случайного одноадресного MAC-адреса для каждого Uplink " @@ -302,30 +302,30 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "Предоставить доступ LuCI к приложению travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Как долго travelmate должен ждать успешного подключения wlan по uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Идентификация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Игнорировать BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Информация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Имя интерфейса" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Временная задержка интерфейса" @@ -333,27 +333,27 @@ msgstr "Временная задержка интерфейса" msgid "Interface Wizard" msgstr "Мастер интерфейсов" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Мастер интерфейсов..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Лимит Автодобавления" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "Ограничить обработку VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "Ограничить обработку VPN определенными интерфейсами." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -361,7 +361,7 @@ msgstr "" "Ограничение максимального количества автоматически добавляемых открытых " "Uplink каналов. Чтобы отключить это ограничение, установите значение '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Ограничьте результаты ближайшего сканирования, чтобы обрабатывать только " @@ -371,26 +371,26 @@ msgstr "" msgid "Log View" msgstr "Просмотр журнала" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC Адрес" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Защита фреймов управления" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -398,7 +398,7 @@ msgstr "" "Минимальный порог качества сигнала в процентах для условных Uplink (от-) " "соединений." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Проверка ошибок сети" @@ -406,24 +406,24 @@ msgstr "Проверка ошибок сети" msgid "No travelmate related logs yet!" msgstr "Пока нет журналов, связанных с travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Вкл/Выкл" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "Необязательно" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Общее время ожидания" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Общий тайм-аут повторных попыток в секундах." @@ -431,7 +431,7 @@ msgstr "Общий тайм-аут повторных попыток в секу msgid "Overview" msgstr "Обзор" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -448,48 +448,48 @@ msgstr "" "выделяется <span style=\"color:rgb(68, 170, 68);font-weight:bold\">зеленым</" "span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Пароль к Приватному ключу" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Путь к сертификату CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Путь к Client-сертификату" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Путь к Приватному ключу" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Пожалуйста, установите отдельный пакет 'qrencode'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -497,11 +497,11 @@ msgstr "" "Обратите внимание: уведомления по электронной почте требуют отдельной " "установки пакета <em>mstmp</em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "Проактивный коммутатор Uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -509,37 +509,37 @@ msgstr "" "Предварительное сканирование и переключение на Uplink с более высоким " "приоритетом, несмотря на уже существующее соединение." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Профиль, используемый 'msmtp' для рассылки электронной почты с уведомлениями " "от travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Обзор QR-кода" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Выбор радиомодуля" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Случайное значение MAC-адресов" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Адрес получателя электронной почты для уведомлений от travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Удалить" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Удалить эту сеть" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -547,85 +547,85 @@ msgstr "" "Напечатайте QR-код выбранной точки доступа для удобной передачи учетных " "данных WLAN на мобильные устройства." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Повторное сканирование" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Обязательно" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Перезагрузка сетевого интерфейса" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Ограничить работу travelmate с одним радиомодулем или изменить общий порядок " "сканирования." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Лимит повторных попыток для подключения к Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Флаги запуска" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (скрытый)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Лимит сканирования" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Сканирование включено" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Аргументы для скрипта" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Адрес отправителя электронной почты для уведомлений от travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Отправляет уведомления по электронной почте после каждого успешного " "подключения к Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Приоритет обслуживания" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Порог качества сигнала" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -633,41 +633,63 @@ msgstr "" "Разделенный пробелами список дополнительных аргументов, передаваемых скрипту " "автоматического входа в систему, т.е. имя пользователя и пароль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "Стандартный VPN-сервис" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "Стандартный интерфейс VPN" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" +"Стандартный VPN-интерфейс, который будет автоматически добавляться в новые " +"профили STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" +"Стандартный VPN-сервис, который автоматически добавляется к новым профилям " +"STA." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Запуск сканирования беспроводной сети в '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "ID станции" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "Интерфейсы станции" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "MAC станции" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Мощность" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Не удалось сгенерировать QR-код!" @@ -679,22 +701,22 @@ msgstr "Имя зоны брандмауэра" msgid "The interface metric" msgstr "Метрика интерфейса" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "Логический сетевой интерфейс vpn, например 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Выбранный URL-адрес будет использоваться для подключений и проверки Captive " "Portal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "Выбранный приоритет будет использоваться для процессов travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -716,7 +738,7 @@ msgstr "Uplink интерфейс был обновлен." msgid "The uplink interface name" msgstr "Имя uplink интерфейса" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -734,7 +756,7 @@ msgstr "" "Этот мастер создает сетевой интерфейс IPv4- и IPv6- алиасы со всеми " "необходимыми настройками сети и брандмауэра." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Тема для уведомлений travelmate по электронной почте." @@ -742,180 +764,180 @@ msgstr "Тема для уведомлений travelmate по электрон msgid "Travelmate" msgstr "TravelMate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Настройки Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Воспринимайте отсутствие доступа к Интернету как ошибку." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Использовать системные сертификаты" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Используйте указанный MAC-адрес для этого Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "User Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "Хук VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN интерфейс" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN сервис" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "Настройки VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN-соединения будут управляться travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN-обработка" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" "Проверка сертификата сервера с помощью встроенной в систему цепочки " "сертификатов ЦС" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Enterprise (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Enterprise (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "Флаги WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Personal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Enterprise (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Enterprise (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Enterprise." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Enterprise (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Enterprise (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Personal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Enterprise." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Enterprise (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Enterprise." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Enterprise (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Personal (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Найденные точки доступа Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Настройки беспроводной сети" @@ -923,36 +945,36 @@ msgstr "Настройки беспроводной сети" msgid "Wireless Stations" msgstr "Клиенты беспроводной сети" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "ничего" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" "использовать оба радиомодуля, обычный порядок сортировки (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" "использовать оба радиомодуля, обратный порядок сортировки (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "использовать только первый радиомодуль (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "использовать только второй радиомодуль (radio1)" diff --git a/applications/luci-app-travelmate/po/sk/travelmate.po b/applications/luci-app-travelmate/po/sk/travelmate.po index 77cdc2a623..ab4f9432c8 100644 --- a/applications/luci-app-travelmate/po/sk/travelmate.po +++ b/applications/luci-app-travelmate/po/sk/travelmate.po @@ -1,118 +1,118 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-09-19 10:18+0000\n" -"Last-Translator: Jose Riha <jose1711@gmail.com>\n" +"PO-Revision-Date: 2023-07-10 15:50+0000\n" +"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/sk/>\n" "Language: sk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 5.0-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" -msgstr "" +msgstr "Anonymná identita" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" -msgstr "" +msgstr "Kanál" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Zariadenie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "" +msgstr "Zakázané" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Zahodiť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Spôsob EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Upraviť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" -msgstr "" +msgstr "Upraviť túto sieť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Zapnuté" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Šifrovanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identita" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" -msgstr "" +msgstr "Názov rozhrania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,33 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#, fuzzy msgid "MAC Address" -msgstr "" +msgstr "Adresa MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +406,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Heslo súkromného kľúča" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Cesta k súkromnému kľúču" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Odstrániť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Uložiť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Nastavenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -622,20 +641,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +672,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +685,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +693,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +872,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "žiadne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/sv/travelmate.po b/applications/luci-app-travelmate/po/sv/travelmate.po index 926b1314de..4ca0e75cf2 100644 --- a/applications/luci-app-travelmate/po/sv/travelmate.po +++ b/applications/luci-app-travelmate/po/sv/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-12-06 15:41+0000\n" +"PO-Revision-Date: 2023-09-17 17:51+0000\n" "Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/sv/>\n" @@ -8,111 +8,111 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.15-dev\n" +"X-Generator: Weblate 5.0.2\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Val av AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "QR-koder för AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Lägg till upplänk..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Ytterligare inställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonym identitet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Automatiskt inloggningsskript" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -122,150 +122,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Enhet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Enhetens namn" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "Avaktiverad" +msgstr "Avstängd" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Avfärda" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Dra för att sortera om" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-postprofil" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Mottagarens e-postadress" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "Avsändaradress för e-post" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" -msgstr "" +msgstr "E-postinställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-postämne" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP-metod" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Redigera" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Redigera det här nätverket" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Aktivera utförlig avlusningsloggning i händelse av behandlingsfel." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "SNABB" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Generella inställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -273,29 +273,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Identitet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "Ignorera BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Information" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -303,33 +303,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -337,32 +337,32 @@ msgstr "" msgid "Log View" msgstr "Logutsikt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-address" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -370,24 +370,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "Overview" msgstr "Överblick" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -405,212 +405,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Lösenord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Den privata nyckelns lösenord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Genväg till klient-certifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Genväg till privat nyckel" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Val av radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "Slumpa MAC-adresser" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Ta bort" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Upprepa skanning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Starta om gränssnitt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Förflaggor" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (gömd)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Spara" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Inställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "Stationens ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "Stationens MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Styrka" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "QR-koden kunde inte genereras!" @@ -622,20 +640,20 @@ msgstr "Namnet på brandväggszonen" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -653,7 +671,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -666,7 +684,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -674,178 +692,178 @@ msgstr "" msgid "Travelmate" msgstr "Reskompis" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Användaragent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN-gränsnitt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN-tjänst" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA-flaggor" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Trådlös skanning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -853,34 +871,34 @@ msgstr "" msgid "Wireless Stations" msgstr "Trådlösa stationer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=pap" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "inga" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index 05383fa4ed..80db66c5fb 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -5,105 +5,105 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -113,150 +113,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -264,29 +264,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -294,33 +294,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -328,32 +328,32 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -361,24 +361,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -386,7 +386,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -396,212 +396,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -613,20 +631,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -644,7 +662,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -657,7 +675,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -665,178 +683,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -844,33 +862,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/tr/travelmate.po b/applications/luci-app-travelmate/po/tr/travelmate.po index 7b51e4cc04..7ef53ddef9 100644 --- a/applications/luci-app-travelmate/po/tr/travelmate.po +++ b/applications/luci-app-travelmate/po/tr/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-09-25 14:22+0000\n" +"PO-Revision-Date: 2023-10-29 19:41+0000\n" "Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/tr/>\n" @@ -8,57 +8,57 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 5.2-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Erişim Noktası Seçimi --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "Bağlantı Noktası QR-Kodları..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "Yukarı Bağlantı Ekle %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "Yukarı Bağlantı Ekle..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Ek Ayarlar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Travelmate işleme başlamadan önce saniye cinsinden ek tetikleme gecikmesi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "Anonim Kimlik" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "Otomatik Eklenen Açık Yukarı Bağlantı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "Otomatik Oturum Açma Betiği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "Açık Yukarı Bağlantılarıları Otomatik Ekle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -67,7 +67,7 @@ msgstr "" "etkinleştirin, ör. başarısız giriş denemelerinden sonra.<br /> Varsayılan " "\"0\" bu özelliği devre dışı bırakır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -75,7 +75,7 @@ msgstr "" "Kablosuz yapılandırmanıza otomatik olarak otel giriş portalları gibi açık " "yukarı bağlantıları ekleyin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -84,7 +84,7 @@ msgstr "" "bırakın, ör. zamanlanmış bağlantılar için.<br /> Varsayılan \"0\" bu " "özelliği devre dışı bırakır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -94,31 +94,31 @@ msgstr "" "özellik, <em>Wireguard</em> veya <em>OpenVPN</em>'in ek yapılandırmasını " "gerektirir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "Captive portal algılama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "Captive Portal URL'si" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Kanal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." @@ -126,7 +126,7 @@ msgstr "" "İnternet kullanılabilirliğini kontrol edin, sabit portal yeniden " "yönlendirmelerini yönetin ve yukarı bağlantı bağlantısını 'canlı' tutun." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -142,137 +142,137 @@ msgstr "" "Lütfen dikkat: </em> İlk başlangıçta gerekli ağ ve güvenlik duvarı " "ayarlarını yapmak için lütfen 'Arayüz Sihirbazı'nı bir kez çalıştırın." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "Bağlantı Sonu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "Bağlantı Sonu Son kullanma tarihi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "Bağlantı Sınırı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "Bağlantı Başlatma" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "Bağlantı Başlangıcı Son kullanma tarihi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Cihaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "Cihaz adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Devre dışı" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Kapat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "Yeniden sıralamak için sürükleyin" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "E-Posta Kancası" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Posta Profili" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "E-Posta Alıcı Adresi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Posta Gönderen Adresi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" -msgstr "E-Posta ayarları" +msgstr "E mail ayarları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "E-Posta Konusu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP Yöntemi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Düzenle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Bu ağı düzenle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "Travelmate hizmetini etkinleştir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Herhangi bir işleme hatası durumunda ayrıntılı hata ayıklama günlüğünü " "etkinleştirin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "Bu ağı etkinleştir/devre dışı bırak" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Etkin" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Şifreleme" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "Harici Kancalar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -280,16 +280,16 @@ msgstr "" "Otomatik sabit portal oturum açma işlemleri için çağrılacak harici komut " "dosyası referansı." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "HIZLI" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Genel Ayarlar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" "Her yukarı bağlantı bağlantısı için rastgele bir tek noktaya yayın MAC " @@ -299,30 +299,30 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "LuCI uygulaması travelmate'e erişim izni verin" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" "Travelmate başarılı bir wlan uplink bağlantısı için ne kadar beklemelidir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Kimlik" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "BSSID'yi Yoksay" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "Bilgi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "Arayüz Adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "Arayüz Zaman Aşımı" @@ -330,27 +330,27 @@ msgstr "Arayüz Zaman Aşımı" msgid "Interface Wizard" msgstr "Arayüz Sihirbazı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "Arayüz Sihirbazı..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Son çalışma zamanı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "Otomatik Eklemeyi Sınırla" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "VPN işlemeyi sınırla" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "VPN işlemeyi belirli arayüzlerle sınırla." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." @@ -358,7 +358,7 @@ msgstr "" "Otomatik olarak eklenen uplink bağlantıların maksimum sayısını sınırlayın. " "Bu sınırlamayı devre dışı bırakmak için '0' olarak ayarlayın." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" "Yalnızca en güçlü uplink'leri işlemek için yakındaki tarama sonuçlarını " @@ -368,26 +368,26 @@ msgstr "" msgid "Log View" msgstr "Günlük Kayıtlarını Göster" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC Adresi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "Yönetim Çerçeve Koruması" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -395,7 +395,7 @@ msgstr "" "Koşullu uplink, bağlantı(bağ. kopması) için yüzde olarak minimum sinyal " "kalitesi eşiği." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "Net Hata Kontrolü" @@ -403,24 +403,24 @@ msgstr "Net Hata Kontrolü" msgid "No travelmate related logs yet!" msgstr "Henüz travelmate ile ilgili kayıt yok!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "Açık/Kapalı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "İsteğe bağlı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "Genel Zaman Aşımı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "Saniye cinsinden genel yeniden deneme zaman aşımı." @@ -428,7 +428,7 @@ msgstr "Saniye cinsinden genel yeniden deneme zaman aşımı." msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -445,48 +445,48 @@ msgstr "" "bağlantısı <span style=\"color:rgb(68, 170, 68);font-weight:bold\">yeşil</" "span> renkle vurgulanır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Parola" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Özel Anahtarın Şifresi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "CA-Sertifikasına Giden Yol" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "İstemci Sertifikasına Giden Yol" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Özel Anahtara Giden Yol" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "Lütfen ayrı 'qrencode' paketini kurun." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" @@ -494,11 +494,11 @@ msgstr "" "Lütfen dikkat: E-posta bildirimleri, <em>mstmp</em> paketinin ayrı " "kurulumunu gerektirir.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive Uplink Switchi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -506,36 +506,36 @@ msgstr "" "Önceden var olan bir bağlantıya rağmen proaktif olarak tarayın ve daha " "yüksek öncelikli bir yukarı bağlantıya geçin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "'Msmtp' tarafından travelmate bildirim e-postaları için kullanılan profil." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR Koduna Genel Bakış" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "Kablosuz Seçimi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "MAC Adreslerini Rastgeleleştir" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için alıcı adresi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Kaldır" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "Bu ağı kaldır" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -543,84 +543,84 @@ msgstr "" "WLAN kimlik bilgilerini mobil cihazlarınıza rahatça aktarmak için seçilen " "Erişim Noktasının QR Kodunu işle." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "Taramayı Tekrarla" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "Gerekli" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Arayüzü Yeniden Başlat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" "Travelmate'i tek bir radyo ile sınırlayın veya genel tarama sırasını " "değiştirin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "Uplink bağlanma yeniden deneme sınırı." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Bayrakları Çalıştır" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (gizli)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "Tarama Sınırı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "Tarama açık" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "Komut Dosyası Bağımsız Değişkenleri" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için gönderen adresi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Her başarılı uplink bağlantısından sonra bildirim e-postaları gönderir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "Hizmet Önceliği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Ayarlar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "Sinyal Kalitesi Eşiği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -628,41 +628,59 @@ msgstr "" "Otomatik Oturum Açma Komut Dosyasına iletilen ek argümanların boşlukla " "ayrılmış listesi, yani kullanıcı adı ve parola" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "Standart VPN Hizmeti" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "Standart VPN arayüzü" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "Yeni STA profillerine otomatik olarak eklenecek standart VPN arayüzü." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "Yeni STA profillerine otomatik olarak eklenecek standart VPN hizmeti." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "Kablosuz tarama başlatılıyor '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "İstasyon kimliği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "İstasyon Arayüzleri" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "İstasyon MAC'i" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Durum / Sürüm" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "Güç" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "QR Kodu oluşturulamadı!" @@ -674,22 +692,22 @@ msgstr "Güvenlik duvarı bölgesi adı" msgid "The interface metric" msgstr "Arayüz metriği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "'wg0' gibi mantıksal vpn ağ arayüzü." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Seçilen URL, bağlantı ve doğrulama amacıyla yönlendirme yapan portal " "kontrolleri için kullanılacaktır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "Seçilen öncelik travelmate işlemleri için kullanılacaktır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -711,7 +729,7 @@ msgstr "Uplink arayüzü güncellendi." msgid "The uplink interface name" msgstr "Uplink arayüzü adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -729,7 +747,7 @@ msgstr "" "sihirbaz, gerekli tüm ağ ve güvenlik duvarı ayarlarıyla bir IPv4 ve IPv6 " "diğer ad ağ arabirimi oluşturur." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için konu." @@ -737,178 +755,178 @@ msgstr "Travelmate bildirim e-postaları için konu." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Travelmate Ayarları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "Eksik internet kullanılabilirliğini bir hata olarak ele al." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Tetikleme Gecikmesi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "Sistem sertifikalarını kullan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "Bu uplink için belirtilen MAC adresini kullanın." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "Kullanıcı Aracısı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "VPN Kancası" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN Arayüzü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN Hizmeti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "VPN Ayarları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN bağlantıları travelmate tarafından yönetilecektir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN işleme" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "Dahili sistem CA paketini kullanarak sunucu sertifikasını doğrulayın" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Ayrıntılı Hata Ayıklama Günlüğü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA Bayrakları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 Kurumsal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "Kablosuz Tarama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "Kablosuz Ağ Ayarları" @@ -916,34 +934,34 @@ msgstr "Kablosuz Ağ Ayarları" msgid "Wireless Stations" msgstr "Kablosuz İstasyonları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "hiçbiri" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "her iki radyoyu da kullanın, normal sıralama düzeni (radyo0 radyo1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "her iki radyoyu da kullanın, sıralama düzeninin tersi (radyo1 radyo0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "sadece ilk radyoyu kullan (radyo0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "sadece ikinci radyoyu kullan (radyo1)" diff --git a/applications/luci-app-travelmate/po/uk/travelmate.po b/applications/luci-app-travelmate/po/uk/travelmate.po index 44123d740b..3dae44ca74 100644 --- a/applications/luci-app-travelmate/po/uk/travelmate.po +++ b/applications/luci-app-travelmate/po/uk/travelmate.po @@ -1,119 +1,119 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-12-04 23:54+0000\n" -"Last-Translator: Arkadii Yakovets <ark@cho.red>\n" +"PO-Revision-Date: 2023-10-19 04:13+0000\n" +"Last-Translator: Oleksandr Shvets <oleksandr.shvets@icloud.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/uk/>\n" "Language: uk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.15-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.1\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" -msgstr "" +msgstr "— вибір AP —" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "Додаткові налаштування" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "Канал" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -123,150 +123,150 @@ msgid "" "once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Пристрій" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "Вимкнено" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "Закрити" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "E-Mail профіль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "E-Mail адреса отримувача" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "E-Mail адреса відправника" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "Тема" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "Метод EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "Редагувати" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "Редагувати цю мережу" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "Увімкнути детальний звіт на випадок будь-яких помилок обробки." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "Шифрування" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "Загальні налаштування" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" @@ -274,29 +274,29 @@ msgstr "" msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "Ідентифікація EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "" @@ -304,33 +304,33 @@ msgstr "" msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "Останній запуск" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" @@ -338,32 +338,32 @@ msgstr "" msgid "Log View" msgstr "Перегляд журналу" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC-адреса" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "" @@ -371,24 +371,24 @@ msgstr "" msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "" @@ -396,7 +396,7 @@ msgstr "" msgid "Overview" msgstr "Огляд" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -406,212 +406,230 @@ msgid "" "bold\">green</span>." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "Пароль закритого ключа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "Шлях до сертифіката CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "Шлях до сертифіката клієнта" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "Шлях до закритого ключа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "Видалити" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "Перезапустити інтерфейс" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "Прапорці запуску" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "Налаштування" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "Статус / Версія" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" @@ -623,20 +641,20 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,7 +672,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -667,7 +685,7 @@ msgid "" "network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -675,178 +693,178 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Затримка запуску" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "Докладний журнал відлагодження" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "" @@ -854,34 +872,34 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "" diff --git a/applications/luci-app-travelmate/po/vi/travelmate.po b/applications/luci-app-travelmate/po/vi/travelmate.po index ad67a888fd..6f96bd8595 100644 --- a/applications/luci-app-travelmate/po/vi/travelmate.po +++ b/applications/luci-app-travelmate/po/vi/travelmate.po @@ -1,118 +1,129 @@ msgid "" msgstr "" -"PO-Revision-Date: 2023-03-26 16:40+0000\n" -"Last-Translator: Nguyễn văn tuyên <admin@tuyen.vn>\n" +"PO-Revision-Date: 2023-10-02 17:46+0000\n" +"Last-Translator: cuong-mudah <cuong@mudah.my>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationstravelmate/vi/>\n" "Language: vi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.17-dev\n" +"X-Generator: Weblate 5.1-dev\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- Lựa chọn AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." -msgstr "" +msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" -msgstr "" +msgstr "Thêm Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." -msgstr "" +msgstr "Thêm Uplink..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" -msgstr "" +msgstr "Cài đặt thêm" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" +"Độ trễ kích hoạt bổ sung tính bằng giây trước khi travelmate bắt đầu xử lý." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" -msgstr "" +msgstr "Danh tính ẩn danh" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" -msgstr "" +msgstr "Xác thực" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" -msgstr "" +msgstr "Uplink Mở Tự Động Thêm" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" -msgstr "" +msgstr "Tự Động Đăng Nhập" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" -msgstr "" +msgstr "Tự Động Thêm Uplinks Mở" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." msgstr "" +"Tự động (kích hoạt lại) bật uplink sau <em>n</em> phút, ví dụ: sau các lần " +"đăng nhập không thành công.<br /> Mặc định là '0' để tắt tính năng này." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" +"Tự động thêm uplink mở như captive portal của khách sạn vào cấu hình không " +"dây của bạn." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." msgstr "" +"Tự động tắt uplink sau <em>n</em> phút, ví dụ: cho các kết nối có thời gian." +"<br /> Mặc định là '0' để tắt tính năng này." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" "em>." msgstr "" +"Tự động xử lý kết nối VPN.<br /> Vui lòng lưu ý: Tính năng này yêu cầu cấu " +"hình bổ sung của <em>Wireguard</em> hoặc <em>OpenVPN</em>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" -msgstr "" +msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" -msgstr "" +msgstr "Phát hiện Captive Portal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" -msgstr "" +msgstr "URL Captive Portal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" -msgstr "" +msgstr "Kênh" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" +"Kiểm tra tính khả dụng của internet, xử lý chuyển hướng captive portal và " +"giữ kết nối uplink 'hoạt động'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -121,281 +132,296 @@ msgid "" "<em>Please note:</em> On first start please call the 'Interface Wizard' " "once, to make the necessary network- and firewall settings." msgstr "" +"Cấu hình của gói travelmate để bật chức năng bộ định tuyến du lịch. Để biết " +"thêm thông tin <a href=\"https://github.com/openwrt/packages/blob/master/net/" +"travelmate/files/README.md\" target=\"_blank\" rel=\"noreferrer " +"noopener\">kiểm tra tài liệu trực tuyến </a>. <br /><em>Xin lưu ý:</em> Khi " +"bắt đầu lần đầu tiên, vui lòng gọi 'Trình hướng dẫn Giao diện' một lần để " +"thực hiện các cài đặt mạng và tường lửa cần thiết." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" -msgstr "" +msgstr "Kết thúc Kết nối" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" -msgstr "" +msgstr "Hết hạn Kết thúc Kết nối" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" -msgstr "" +msgstr "Giới hạn Kết nối" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" -msgstr "" +msgstr "Bắt đầu Kết nối" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" -msgstr "" +msgstr "Hết hạn Bắt đầu Kết nối" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "Thiết bị" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" -msgstr "" +msgstr "Tên Thiết Bị" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" -msgstr "" +msgstr "Vô hiệu hoá" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" -msgstr "" +msgstr "Bỏ qua" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" -msgstr "" +msgstr "Kéo để tổ chức lại" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" -msgstr "" +msgstr "Kết Nối Email" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" -msgstr "" +msgstr "Hồ sơ Email" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Địa chỉ người nhận Email" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Địa chỉ người gửi Email" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" -msgstr "" +msgstr "Cài đặt E-Mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" -msgstr "" +msgstr "Chủ đề Email" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" -msgstr "" +msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" -msgstr "" +msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" -msgstr "" +msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" -msgstr "" +msgstr "EAP-Method" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" -msgstr "" +msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" -msgstr "" +msgstr "Chỉnh Sửa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" -msgstr "" +msgstr "Chỉnh sửa mạng này" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." -msgstr "" +msgstr "Bật dịch vụ travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Cho phép ghi nhật ký gỡ lỗi chi tiết trong trường hợp có bất kỳ lỗi xử lý " +"nào." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" -msgstr "" +msgstr "Bật/Tắt mạng này" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" -msgstr "Bật" +msgstr "Kích Hoạt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" -msgstr "" +msgstr "Mã hóa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" -msgstr "" +msgstr "Các Hooks Mở Rộng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" +"Tài liệu kịch bản ngoại vi sẽ được gọi cho đăng nhập tự động vào cổng điều " +"khiển." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" -msgstr "" +msgstr "NHANH" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" -msgstr "" +msgstr "Các cài đặt chung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." -msgstr "" +msgstr "Tạo địa chỉ MAC unicast ngẫu nhiên cho mỗi kết nối uplink." #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 msgid "Grant access to LuCI app travelmate" -msgstr "" +msgstr "Cấp quyền truy cập cho ứng dụng LuCI travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." -msgstr "" +msgstr "Travelmate nên đợi bao lâu để có kết nối uplink wlan thành công." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" -msgstr "" +msgstr "Nhận dạng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" -msgstr "" +msgstr "Bỏ qua BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" -msgstr "" +msgstr "Thông Tin" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" -msgstr "" +msgstr "Tên Giao diện" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" -msgstr "" +msgstr "Thời gian chờ Giao diện" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 msgid "Interface Wizard" -msgstr "" +msgstr "Trình hướng dẫn Giao diện" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." -msgstr "" +msgstr "Trình hướng dẫn Giao diện..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" -msgstr "" +msgstr "Lần chạy cuối cùng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" -msgstr "" +msgstr "Giới hạn AutoAdd" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" -msgstr "" +msgstr "Giới hạn xử lý VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." -msgstr "" +msgstr "Giới hạn xử lý VPN cho các giao diện cụ thể." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" +"Giới hạn số lượng kết nối uplink mở tự động tối đa. Để tắt giới hạn này, đặt " +"nó thành '0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "" +"Giới hạn kết quả quét gần đây để chỉ xử lý các kết nối uplink mạnh nhất." #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 msgid "Log View" -msgstr "" +msgstr "Xem nhật ký" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" -msgstr "" +msgstr "Địa chỉ MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" -msgstr "" +msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" -msgstr "" +msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" -msgstr "" +msgstr "Bảo vệ Khung Quản lý" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" +"Ngưỡng chất lượng tín hiệu tối thiểu dưới dạng phần trăm cho kết nối uplink " +"điều kiện." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" -msgstr "" +msgstr "Kiểm tra Lỗi Mạng" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 msgid "No travelmate related logs yet!" -msgstr "" +msgstr "Chưa có nhật ký liên quan đến travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" -msgstr "" +msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" -msgstr "" +msgstr "Bật/Tắt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" -msgstr "" +msgstr "Tùy chọn" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" -msgstr "" +msgstr "Thời gian chờ Tổng thể" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." -msgstr "" +msgstr "Thời gian chờ thử lại Tổng thể tính bằng giây." #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" -msgstr "" +msgstr "Tổng quan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -404,260 +430,299 @@ msgid "" "connection is emphasized in <span style=\"color:rgb(68, 170, 68);font-weight:" "bold\">green</span>." msgstr "" +"Tổng quan về tất cả các đường lên đã định cấu hình cho travelmate. Bạn có " +"thể chỉnh sửa, xóa hoặc ưu tiên các liên kết lên hiện tại bằng cách kéo " +"& thả và quét tìm những cái mới.<br />Kết nối đường lên hiện được sử " +"dụng được nhấn mạnh bằng <span style=\"color:rgb(51, 119, 204);font-weight:" +"bold\">blue</span>, một mã hóa Kết nối đường lên VPN được nhấn mạnh bằng " +"<span style=\"color:rgb(68, 170, 68);font-weight:bold\">màu xanh lục</span>." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" -msgstr "" +msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" -msgstr "" +msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" -msgstr "" +msgstr "Mật khẩu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" -msgstr "" +msgstr "Mật khẩu của Khóa Riêng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" -msgstr "" +msgstr "Đường dẫn đến Chứng chỉ CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" -msgstr "" +msgstr "Đường dẫn đến Chứng chỉ Khách hàng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" -msgstr "" +msgstr "Đường dẫn đến khóa riêng" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." -msgstr "" +msgstr "Vui lòng cài đặt gói 'qrencode' riêng." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "" +"Vui lòng lưu ý: Thông báo qua E-Mail yêu cầu cài đặt riêng gói <em>mstmp</" +"em>.<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" -msgstr "" +msgstr "Chuyển đổi Kết nối Uplink Chủ Động" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" +"Quét và chuyển đổi kết nối uplink ưu tiên cao hơn một cách chủ động, mặc dù " +"đã có kết nối hiện tại." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." -msgstr "" +msgstr "Hồ sơ được sử dụng bởi 'msmtp' cho E-Mail thông báo travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" -msgstr "" +msgstr "Tổng quan mã QR-Code" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" -msgstr "" +msgstr "Lựa chọn Radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" -msgstr "" +msgstr "Ngẫu nhiên hóa địa chỉ MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." -msgstr "" +msgstr "Địa chỉ người nhận cho E-Mail thông báo travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" -msgstr "" +msgstr "Xóa" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" -msgstr "" +msgstr "Xóa mạng này" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" +"Tạo mã QR-Code của Điểm Truy Cập đã chọn để dễ dàng chuyển đổi thông tin xác " +"thực WLAN đến thiết bị di động của bạn." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" -msgstr "" +msgstr "Quét Lặp Lại" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" -msgstr "" +msgstr "Bắt buộc" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" -msgstr "" +msgstr "Khởi động lại giao thức" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "" +"Hạn chế travelmate chỉ sử dụng một radio duy nhất hoặc thay đổi thứ tự quét " +"toàn bộ." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." -msgstr "" +msgstr "Giới hạn thử lại kết nối với một uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" -msgstr "" +msgstr "Run flags" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" -msgstr "" +msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" -msgstr "" +msgstr "SSID (ẩn)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" -msgstr "" +msgstr "Lưu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" -msgstr "" +msgstr "Giới hạn Quét" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" -msgstr "" +msgstr "Quét trên" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" -msgstr "" +msgstr "Đối số Kịch bản" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." -msgstr "" +msgstr "Địa chỉ người gửi cho E-Mail thông báo travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." -msgstr "" +msgstr "Gửi E-Mail thông báo sau mỗi kết nối uplink thành công." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" -msgstr "" +msgstr "Ưu tiên Dịch vụ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" -msgstr "" +msgstr "Cài đặt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" -msgstr "" +msgstr "Ngưỡng Chất lượng Tín hiệu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" +"Danh sách các đối số bổ sung được phân cách bằng khoảng trống được truyền " +"vào Kịch bản Tự động Đăng nhập, ví dụ: tên người dùng và mật khẩu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 -msgid "Starting wireless scan on '" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 -msgid "Station ID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 -msgid "Station Interfaces" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 -msgid "Station MAC" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "Starting wireless scan on '" +msgstr "Bắt đầu quét không dây trên '" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 +msgid "Station ID" +msgstr "ID Điểm trạm" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "Station Interfaces" +msgstr "Giao diện Điểm trạm" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 +msgid "Station MAC" +msgstr "Địa chỉ MAC Điểm trạm" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" -msgstr "" +msgstr "Trạng thái / Phiên bản" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" -msgstr "" +msgstr "Cường độ tín hiệu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" -msgstr "" +msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" -msgstr "" +msgstr "Không thể tạo mã QR-Code!" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:34 msgid "The firewall zone name" -msgstr "" +msgstr "Tên vùng tường lửa" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:39 msgid "The interface metric" -msgstr "" +msgstr "Số liệu giao diện" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." -msgstr "" +msgstr "Giao diện mạng VPN logic như 'wg0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" +"URL được chọn sẽ được sử dụng cho kiểm tra kết nối và cổng truy cập chận." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." -msgstr "" +msgstr "Ưu tiên được chọn sẽ được sử dụng cho quá trình travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." msgstr "" +"User agent được chọn sẽ được sử dụng cho kiểm tra kết nối và cổng truy cập " +"chận." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:29 msgid "The syslog output, pre-filtered for travelmate related messages only." -msgstr "" +msgstr "Đầu ra syslog, đã lọc trước cho các tin nhắn liên quan đến travelmate." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:59 msgid "The uplink interface has been updated." -msgstr "" +msgstr "Giao diện uplink đã được cập nhật." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:29 msgid "The uplink interface name" -msgstr "" +msgstr "Tên giao diện uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." msgstr "" +"Tùy chọn này được chọn mặc định nếu uplink này được thêm tự động và được " +"tính là 'Uplink Mở'." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24 msgid "" @@ -665,224 +730,227 @@ msgid "" "creates an IPv4- and an IPv6 alias network interface with all required " "network- and firewall settings." msgstr "" +"Để sử dụng Travelmate, bạn phải thiết lập một giao diện uplink một lần. " +"Hướng dẫn này tạo ra một giao diện mạng địa chỉ IPv4 và IPv6 với tất cả các " +"cài đặt mạng và tường lửa cần thiết." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." -msgstr "" +msgstr "Chủ đề cho E-Mail thông báo travelmate." #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" -msgstr "" +msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" -msgstr "" +msgstr "Cài đặt Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." -msgstr "" +msgstr "Xem việc không có kết nối internet là một lỗi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" -msgstr "" +msgstr "Sử dụng chứng chỉ hệ thống" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." -msgstr "" +msgstr "Sử dụng địa chỉ MAC được chỉ định cho uplink này." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" -msgstr "" +msgstr "User Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" -msgstr "" +msgstr "VPN Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" -msgstr "" +msgstr "Giao diện VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" -msgstr "" +msgstr "Dịch vụ VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" -msgstr "" +msgstr "Cài đặt VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." -msgstr "" +msgstr "Các kết nối VPN sẽ được quản lý bởi travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" -msgstr "" +msgstr "Xử lý VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" -msgstr "" +msgstr "Xác thực chứng chỉ máy chủ bằng gói chứng chỉ CA hệ thống tích hợp sẵn" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" -msgstr "" +msgstr "Ghi nhật ký gỡ lỗi chi tiết (Verbose Debug Logging)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" -msgstr "" +msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" -msgstr "" +msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" -msgstr "" +msgstr "Cờ WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." -msgstr "" +msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" -msgstr "" +msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" -msgstr "" +msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" -msgstr "" +msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" -msgstr "" +msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" -msgstr "" +msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" -msgstr "" +msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." -msgstr "" +msgstr "WPA2 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" -msgstr "" +msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" -msgstr "" +msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." -msgstr "" +msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" -msgstr "" +msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" -msgstr "" +msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." -msgstr "" +msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" -msgstr "" +msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" -msgstr "" +msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." -msgstr "" +msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" -msgstr "" +msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" -msgstr "" +msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" -msgstr "" +msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" -msgstr "" +msgstr "Quét Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" -msgstr "" +msgstr "Cài đặt Wi-Fi" #: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 msgid "Wireless Stations" -msgstr "" +msgstr "Các Thiết bị Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" -msgstr "" +msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" -msgstr "" +msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" -msgstr "" +msgstr "không" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" -msgstr "" +msgstr "sử dụng cả hai radio, thứ tự sắp xếp bình thường (radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" -msgstr "" +msgstr "sử dụng cả hai radio, thứ tự sắp xếp ngược (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" -msgstr "" +msgstr "chỉ sử dụng radio thứ nhất (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" -msgstr "" +msgstr "chỉ sử dụng radio thứ hai (radio1)" #~ msgid "Action" #~ msgstr "Hành động" diff --git a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po index 0e257e2c42..c8f428610f 100644 --- a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2023-05-08 14:25+0000\n" -"Last-Translator: Keen <keen_kwuo@msn.com>\n" +"PO-Revision-Date: 2023-10-25 13:51+0000\n" +"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationstravelmate/zh_Hans/>\n" "Language: zh_Hans\n" @@ -14,56 +14,56 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.18-dev\n" +"X-Generator: Weblate 5.1.1\n" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:76 msgid "-- AP Selection --" msgstr "-- 选择 AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "AP二维码..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "添加上行链路%q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "添加上行链路..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "额外设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "匿名身份" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "身份验证" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "自动添加开放上行链路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "自动登录脚本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "自动添加开放的上行链路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -71,13 +71,13 @@ msgstr "" "在登录失败等情况下,等待<em>n</em>分钟后(重新)启用上行链路。<br />默认数" "值“0”将禁用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "自动将开放的上行链路(例如酒店的强制登录门户)添加到您的无线配置中。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -85,7 +85,7 @@ msgstr "" "在连接超时等情况下,等待<em>n</em>分钟后自动禁用上行链路。<br />默认数值“0”将" "禁用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -94,38 +94,38 @@ msgstr "" "自动处理 VPN 连接。<br />请注意:此功能需要额外配置 <em>Wireguard</em>或" "<em>OpenVPN</em>。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "强制登录门户检测" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "强制登录门户网址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "信道" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" "检查网络可连接性,处理强制登录门户重定向的同时保持上行链路处于活动状态。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -140,150 +140,150 @@ msgstr "" "请注意:</em>第一次启动时,请调用“接口向导”一次,以进行必要的网络和防火墙设" "置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "连接终止" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "连接终止超时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "连接限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "连接启动" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "连接启动超时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "设备" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "设备名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "已禁用" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "关闭" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "拖动以重排" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "电子邮件接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "电子邮件概要" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "电子邮件收件人地址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "电子邮件发件人地址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "电子邮件设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "电子邮件主题" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "EAP 类型" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "编辑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "编辑此网络" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "启用travelmate服务。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "在出现任何处理错误时启用详细的调试日志。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "启用/禁用此网络" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "启用" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "加密" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "外部接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "引用外部脚本,将用于强制登录门户的登录。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "FAST" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "常规设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "为每个上行链路生成一个随机的unicast MAC地址。" @@ -291,29 +291,29 @@ msgstr "为每个上行链路生成一个随机的unicast MAC地址。" msgid "Grant access to LuCI app travelmate" msgstr "授予访问 LuCI 应用 travelmate 的权限" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行链路连接成功的最长时间。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "鉴权" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "忽略 BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "信息" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "接口名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "接口超时" @@ -321,33 +321,33 @@ msgstr "接口超时" msgid "Interface Wizard" msgstr "接口向导" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "接口向导..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "限制自动添加" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "限制 VPN 处理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "将 VPN 处理限制到某些接口。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "限制自动添加的开放上行链路的最大数量。 要禁用此限制,请将其设置为“0”。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "将附近的扫描结果限制为仅处理最强的上行链路。" @@ -355,32 +355,32 @@ msgstr "将附近的扫描结果限制为仅处理最强的上行链路。" msgid "Log View" msgstr "日志视图" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC 地址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "管理帧保护" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "最小信号质量阈值(百分比),作为连接(断开)上行链路的条件。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "网络错误检查" @@ -388,24 +388,24 @@ msgstr "网络错误检查" msgid "No travelmate related logs yet!" msgstr "还没有和travlemate相关的日志!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "开/关" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "可选" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "总体超时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "总体重试超时(秒)。" @@ -413,7 +413,7 @@ msgstr "总体重试超时(秒)。" msgid "Overview" msgstr "概览" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -428,212 +428,230 @@ msgstr "" "VPN 上行连接以<span style=\"color:rgb(68, 170, 68);font-weight:bold\">绿色</" "span>表示。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "私钥密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "CA 证书路径" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "客户端证书路径" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "私钥路径" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "请安装“qrencode”软件包。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "请注意:电子邮件通知需要安装<em>mstmp</em>软件包<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive 上行链路切换器" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已经存在的连接,主动扫描并切换到更高优先级的上行链路。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "用于travelmate电子邮件提醒的“msmtp”资料。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "二维码概览" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "发射天线选择" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "随机MAC地址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的收件人地址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "移除" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "删除此网络" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "为选中的AP生成二维码来便利的传输登录信息至移动设备。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "重复扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "必需的" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "重启实例" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "将 travelmate 限制为单一 radio 或更改整体扫描顺序。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "连接到上行链路的重试次数限制。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "运行标记" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID(隐藏)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "扫描限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "在此扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "脚本参数" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的发件人地址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "在每次上行链路连接成功后都发送电子邮件提醒。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "服务优先级" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "信号质量阈值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "分隔传递给自动登录脚本的其他可选参数的列表,比如用户名和密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "标准 VPN 服务" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "标准 VPN 接口" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "会被自动添加到新 STA 配置的标准 VPN 接口。" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "会被自动添加到新 STA 配置的标准 VPN 服务。" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "在此开始无线扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "站点ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "站接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "站点MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "状态 / 版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "强度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "无法生成二维码!" @@ -645,20 +663,20 @@ msgstr "防火墙区域名称" msgid "The interface metric" msgstr "接口跃点" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "逻辑 vpn 网络接口,如“wg0”。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "选中的网址将用于网络可连接性和强制登录门户检查。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "travelmate进程的优先级。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -676,7 +694,7 @@ msgstr "上行链路接口已被更新。" msgid "The uplink interface name" msgstr "上行链路接口名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -691,7 +709,7 @@ msgstr "" "为了使用travelmate,你需要设置一次上行链路接口。此向导将生成IPv4和IPv6的相关" "网络接口及其相关的防火墙和网络设置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的标题。" @@ -699,178 +717,178 @@ msgstr "travelmate电子邮件提醒的标题。" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "Travelmate设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "将无法连接互联网视为错误。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "触发延时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "使用系统证书" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "为此上行链路使用指定的 MAC 地址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "User Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN服务" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "VPN设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN 连接将由 travelmate 管理。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN 处理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "使用内置的系统 CA 捆绑包验证服务器证书" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "详细的调试记录" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA参数" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WPA2 企业版." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "无线扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "无线设置" @@ -878,34 +896,34 @@ msgstr "无线设置" msgid "Wireless Stations" msgstr "无线站点" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "无" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "使用两个 radio,正常排序顺序(radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "使用两个 radio,反向排序(radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "仅使用第一个 radio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "仅使用第二个 radio (radio1)" diff --git a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po index 5f4cbc6970..7b6f389e5c 100644 --- a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po @@ -20,50 +20,50 @@ msgstr "" msgid "-- AP Selection --" msgstr "-- 選擇AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:269 msgid "AP QR-Codes..." msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1037 msgid "Add Uplink %q" msgstr "新增上行連接 %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:865 msgid "Add Uplink..." msgstr "上行連接..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 msgid "Additional Settings" msgstr "附加設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "附加觸發 travelmate 行程開始延遲的秒數。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:994 msgid "Anonymous Identity" msgstr "匿名身份" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "Authentication" msgstr "認證" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 msgid "Auto Added Open Uplink" msgstr "自動加入開放上行鏈路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:617 msgid "Auto Login Script" msgstr "自動登入指令碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "AutoAdd Open Uplinks" msgstr "自動新增開放的上行連接" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:600 msgid "" "Automatically (re-)enable the uplink after <em>n</em> minutes, e.g. after " "failed login attempts.<br /> The default of '0' disables this feature." @@ -71,13 +71,13 @@ msgstr "" "在登錄失敗等情況下,等待<em>n</em>分鍾後 (重新) 啟用上傳。<br />預設數值 '0' " "將停用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:352 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "自動新增開放的上行連接 (例如旅館的強制登錄門戶) 加入到您的無線設定中。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:582 msgid "" "Automatically disable the uplink after <em>n</em> minutes, e.g. for timed " "connections.<br /> The default of '0' disables this feature." @@ -85,7 +85,7 @@ msgstr "" "在連接逾時等情況下,等待<em>n</em>分鍾後自動停用上行連接。<br />預設數值 '0' " "將停用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "" "Automatically handle VPN connections.<br /> Please note: This feature " "requires the additional configuration of <em>Wireguard</em> or <em>OpenVPN</" @@ -94,38 +94,38 @@ msgstr "" "自動處理 VPN 連接。<br />請注意:此功能需要額外設定 <em>Wireguard</em>或" "<em>OpenVPN</em>。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:506 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "CHAP" msgstr "CHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Captive Portal Detection" msgstr "網頁驗證入口偵測" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "Captive Portal URL" msgstr "網頁驗證入口網址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Channel" msgstr "頻道" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "" "Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" "檢查網際網路可用性,處理網頁驗證入口重導的同時保持上行連接處於 '存活' 狀態。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:149 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:148 msgid "" "Configuration of the travelmate package to enable travel router " "functionality. For further information <a href=\"https://github.com/openwrt/" @@ -140,150 +140,150 @@ msgstr "" "請注意:</em>第一次啟動時,請呼叫「介面精靈」一次,以進行必要的網路和防火牆設" "定。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:528 msgid "Connection End" msgstr "連接終止" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:599 msgid "Connection End Expiry" msgstr "連線終止逾時" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Connection Limit" msgstr "連線限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:517 msgid "Connection Start" msgstr "連線啟動" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Connection Start Expiry" msgstr "連線啟動逾時" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 msgid "Device" msgstr "裝置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "Device Name" msgstr "裝置名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1003 msgid "Disabled" msgstr "已停用" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:131 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1043 msgid "Dismiss" msgstr "關閉" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:252 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 msgid "Drag to reorder" msgstr "拖動來排序" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "E-Mail Hook" msgstr "電子郵件掛鉤" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "E-Mail Profile" msgstr "電郵設定檔" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "E-Mail Receiver Address" msgstr "電郵收件人位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "E-Mail Sender Address" msgstr "電郵寄件人位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "E-Mail Settings" msgstr "電子郵件設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "E-Mail Topic" msgstr "電郵主旨" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:425 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:983 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:427 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:985 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:969 msgid "EAP-Method" msgstr "可擴展身份驗證協定(EAP)-方式" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:428 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:986 msgid "EAP-TLS" msgstr "EAP-TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:260 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 msgid "Edit" msgstr "編輯" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:258 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 msgid "Edit this network" msgstr "編輯此網路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Enable the travelmate service." msgstr "啟用 travelmate 服務。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Enable verbose debug logging in case of any processing errors." msgstr "在出現任何處理錯誤的情況下,請啟用詳細除錯日誌記錄。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:263 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 msgid "Enable/Disable this network" msgstr "啟用/停用此網路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 msgid "Enabled" msgstr "啟用" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "Encryption" msgstr "加密(Encryption)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:251 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:250 msgid "Ext. Hooks" msgstr "外部掛勾" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:618 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "引用外部指令碼,將用於網頁驗證入口的登錄。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "FAST" msgstr "快速" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:294 msgid "General Settings" msgstr "一般設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Generate a random unicast MAC address for each uplink connection." msgstr "為每個上行連路產生一個隨機的單播MAC 位址。" @@ -291,29 +291,29 @@ msgstr "為每個上行連路產生一個隨機的單播MAC 位址。" msgid "Grant access to LuCI app travelmate" msgstr "授予 luci-app-travelmate 擁有 UCI 存取的權限" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行連線成功最長時間。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:435 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 msgid "Identity" msgstr "身份" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Ignore BSSID" msgstr "忽略 BSSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:225 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 msgid "Information" msgstr "資訊" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 msgid "Interface Name" msgstr "介面名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:371 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 msgid "Interface Timeout" msgstr "介面逾時" @@ -321,34 +321,34 @@ msgstr "介面逾時" msgid "Interface Wizard" msgstr "介面精靈" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:283 msgid "Interface Wizard..." msgstr "介面精靈..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:255 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:254 msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "Limit AutoAdd" msgstr "限制自動加入" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing" msgstr "限制 VPN 處理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:322 msgid "Limit VPN processing to certain interfaces." msgstr "將 VPN 處理限制到某些介面。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:347 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 msgid "" "Limit the maximum number of automatically added open uplinks. To disable " "this limitation set it to '0'." msgstr "" "限制自動加入的開放上行鏈路的最大數量。 要停用此限制,請將其設定為「0」。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Limit the nearby scan results to process only the strongest uplinks." msgstr "將附近的掃描結果限制為僅處理最強的上行鏈路。" @@ -356,32 +356,32 @@ msgstr "將附近的掃描結果限制為僅處理最強的上行鏈路。" msgid "Log View" msgstr "日誌檢視" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 msgid "MAC Address" msgstr "MAC 位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:423 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "MSCHAP" msgstr "MSCHAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:982 msgid "MSCHAPV2" msgstr "MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:443 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 msgid "Mgmt. Frame Protection" msgstr "管理。 框架保護" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "最小訊號品質閾值 (百分比),作為 (中斷) 連線上行的條件。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Net Error Check" msgstr "網路錯誤檢查" @@ -389,24 +389,24 @@ msgstr "網路錯誤檢查" msgid "No travelmate related logs yet!" msgstr "還沒有和 travlemate 相關的日誌!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:327 msgid "OWE" msgstr "OWE" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:265 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 msgid "On/Off" msgstr "開/關" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1004 msgid "Optional" msgstr "可選" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall Timeout" msgstr "總體逾時" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:376 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:385 msgid "Overall retry timeout in seconds." msgstr "總體重試逾時 (秒)。" @@ -414,7 +414,7 @@ msgstr "總體重試逾時 (秒)。" msgid "Overview" msgstr "概覽" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 msgid "" "Overview of all configured uplinks for travelmate. You can edit, remove or " "prioritize existing uplinks by drag & drop and scan for new ones.<br /> " @@ -429,212 +429,230 @@ msgstr "" "密的 <span style=\"color:rgb(68, 170, 68);font-weight:bold\">green</span>強調" "VPN上行連接。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "PAP" msgstr "PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:398 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:958 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "Password" msgstr "密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:481 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1031 msgid "Password of Private Key" msgstr "私鑰密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:465 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1018 msgid "Path to CA-Certificate" msgstr "CA 憑證路徑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:471 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1023 msgid "Path to Client-Certificate" msgstr "用戶憑證的路徑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:476 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1027 msgid "Path to Private Key" msgstr "私鑰的路徑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:266 msgid "Please install the separate 'qrencode' package." msgstr "請安裝「qrencode」套件。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:296 msgid "" "Please note: E-Mail notifications require the separate setup of the " "<em>mstmp</em> package.<br /><p> </p>" msgstr "請注意:電子郵件通知需要安裝<em>mstmp</em>套件<br /><p> </p>" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "ProActive Uplink Switch" msgstr "ProActive 上行切換器" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:335 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:344 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已經存在的連線,主動掃描並切換到更高優先順序的上行。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:443 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "用於 travelmate 電子郵件提醒的「msmtp」資料。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR-Code 概覽" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "Radio Selection" msgstr "發射天線選擇" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:348 msgid "Randomize MAC Addresses" msgstr "隨機 MAC 位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:428 msgid "Receiver address for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的收件人位址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:270 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:279 msgid "Remove" msgstr "移除" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:277 msgid "Remove this network" msgstr "刪除此網路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "為選取的 AP 產生 QR-Code 來便利的傳輸登錄資訊至行動裝置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 msgid "Repeat Scan" msgstr "重複掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:450 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 msgid "Required" msgstr "必需" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:276 msgid "Restart Interface" msgstr "重新啟動介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 msgid "" "Restrict travelmate to a single radio or change the overall scanning order." msgstr "將 travelmate 限制為單一 radio 或變更整體掃描順序。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "Retry limit to connect to an uplink." msgstr "連線到上行連線的重試限制。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:246 msgid "Run Flags" msgstr "執行旗標" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:910 msgid "SSID (hidden)" msgstr "SSID (隱藏)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1048 msgid "Save" msgstr "儲存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:381 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:390 msgid "Scan Limit" msgstr "掃描限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:739 msgid "Scan on" msgstr "在此掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:656 msgid "Script Arguments" msgstr "指令碼參數" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:424 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:433 msgid "Sender address for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的發件人位址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:425 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "在每次上行連接成功後都傳送電子郵件提醒。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Service Priority" msgstr "服務優先權" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:292 msgid "Settings" msgstr "設置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:375 msgid "Signal Quality Threshold" msgstr "訊號品質閾值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:657 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "分隔傳遞給自動登錄指令碼的其他可選參數的列表,比如使用者名稱和密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "Standard VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "Standard VPN interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:334 +msgid "" +"Standard VPN interface which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:328 +msgid "" +"Standard VPN service which will be automatically added to new STA profiles." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 msgid "Starting wireless scan on '" msgstr "在此開始無線掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:231 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station ID" msgstr "站台 ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:239 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 msgid "Station Interfaces" msgstr "站介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station MAC" msgstr "站台MAC位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:227 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Status / Version" msgstr "狀態/版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 msgid "Strength" msgstr "強度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:971 msgid "TLS" msgstr "傳輸層安全性協定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "無法產生 QR-Code!" @@ -646,20 +664,20 @@ msgstr "防火牆區域名稱" msgid "The interface metric" msgstr "介面指標" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "The logical vpn network interface like 'wg0'." msgstr "邏輯 vpn 網路介面,如「wg0」。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:386 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "選取的網址將用於網路可連接性和網頁驗證入口檢查。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "The selected priority will be used for travelmate processes." msgstr "travelmate 行程將使用已選擇的優先權。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -677,7 +695,7 @@ msgstr "上行介面已被更新。" msgid "The uplink interface name" msgstr "上行介面名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:540 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -693,7 +711,7 @@ msgstr "" "為了使用 travelmate,您需要設定一次上行介面。此精靈將產生 IPv4 和 IPv6 的相關" "網路介面及其相關的防火牆和網路設定。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:438 msgid "Topic for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的標題。" @@ -701,178 +719,178 @@ msgstr "travelmate 電子郵件提醒的標題。" msgid "Travelmate" msgstr "travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:254 msgid "Travelmate Settings" msgstr "travelmate 設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:330 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:339 msgid "Treat missing internet availability as an error." msgstr "將無法連接網際網路視為錯誤。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:356 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Use system certificates" msgstr "使用系統證書" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 msgid "Use the specified MAC address for this uplink." msgstr "為此上行鏈路使用指定的 MAC 位址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 msgid "User Agent" msgstr "用戶代理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:677 msgid "VPN Hook" msgstr "VPN掛鉤" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:709 msgid "VPN Interface" msgstr "VPN 介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:694 msgid "VPN Service" msgstr "VPN 服務" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:246 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:255 msgid "VPN Settings" msgstr "VPN 設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN connections will be managed by travelmate." msgstr "VPN 連線將由 travelmate 管理。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:318 msgid "VPN processing" msgstr "VPN 處理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:458 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1012 msgid "Validate server certificate using built-in system CA bundle" msgstr "使用內建的系統 CA 組合驗證伺服器證書" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 msgid "Verbose Debug Logging" msgstr "詳細除錯日誌" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:323 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:950 msgid "WPA Ent. (CCMP)" msgstr "WPA企業(CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:324 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 msgid "WPA Ent. (TKIP)" msgstr "WPA 企業. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:243 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "WPA Flags" msgstr "WPA 參數" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 msgid "WPA Pers." msgstr "WPA 個人." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA Pers. (CCMP)" msgstr "WPA 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA Pers. (TKIP)" msgstr "WPA 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:325 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:952 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:953 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:320 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA2 Ent." msgstr "WAP2 企業版." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:322 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:949 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 企業. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA2 Pers." msgstr "WPA2 個人." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 企業." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 企業 (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA3 Ent." msgstr "WPA3 企業." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:954 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:763 msgid "Wireless Scan" msgstr "無線掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:244 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:253 msgid "Wireless Settings" msgstr "無線設定" @@ -880,34 +898,34 @@ msgstr "無線設定" msgid "Wireless Stations" msgstr "無線站點" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:988 msgid "auth=MSCHAPV2" msgstr "驗證= MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:429 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 msgid "auth=PAP" msgstr "驗證= PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:328 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 msgid "none" msgstr "無" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "use both radios, normal sort order (radio0 radio1)" msgstr "使用兩個 radio,正常排序順序(radio0 radio1)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:311 msgid "use both radios, reverse sort order (radio1 radio0)" msgstr "使用兩個 radio,反向排序 (radio1 radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:308 msgid "use the first radio only (radio0)" msgstr "僅使用第一個 radio (radio0)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:309 msgid "use the second radio only (radio1)" msgstr "僅使用第二個 radio (radio1)" diff --git a/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json b/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json index 4c91d6e8eb..3790ce4eac 100644 --- a/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json +++ b/applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json @@ -16,7 +16,7 @@ "/tmp/trm_runtime.json": [ "read" ], "/sbin/logread -e trm-": [ "exec" ], "/usr/sbin/logread -e trm-": [ "exec" ], - "/usr/sbin/ifup *": [ "exec" ], + "/sbin/ifup *": [ "exec" ], "/etc/init.d/travelmate start" : [ "exec" ], "/etc/init.d/travelmate stop" : [ "exec" ], "/etc/init.d/travelmate reload" : [ "exec" ], |