From e3b357ac0eb2b3942fd3c948fce9cecbf0ed30cc Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Sat, 19 Sep 2020 00:01:07 +0200 Subject: [PATCH] luci-app-travelmate: release 2.0 - sync with travelmate 2.0 - app migrated to client side JS Signed-off-by: Dirk Brenken --- applications/luci-app-travelmate/Makefile | 7 +- .../resources/view/travelmate/logread.js | 42 + .../resources/view/travelmate/overview.js | 430 ++++++ .../resources/view/travelmate/stations.js | 879 ++++++++++++ .../luasrc/controller/travelmate.lua | 69 - .../model/cbi/travelmate/cfg_firewall_tab.lua | 41 - .../model/cbi/travelmate/cfg_network_tab.lua | 41 - .../model/cbi/travelmate/cfg_wireless_tab.lua | 41 - .../cbi/travelmate/configuration_tab.lua | 43 - .../model/cbi/travelmate/overview_tab.lua | 153 --- .../luasrc/model/cbi/travelmate/wifi_add.lua | 226 --- .../model/cbi/travelmate/wifi_delete.lua | 14 - .../luasrc/model/cbi/travelmate/wifi_edit.lua | 207 --- .../model/cbi/travelmate/wifi_order.lua | 36 - .../luasrc/view/travelmate/logread.htm | 36 - .../luasrc/view/travelmate/runtime.htm | 223 --- .../luasrc/view/travelmate/stations.htm | 154 --- .../luasrc/view/travelmate/travelmate_css.htm | 94 -- .../luasrc/view/travelmate/wifi_scan.htm | 95 -- .../luci-app-travelmate/po/ar/travelmate.po | 779 +++++++---- .../luci-app-travelmate/po/bg/travelmate.po | 764 ++++++---- .../po/bn_BD/travelmate.po | 764 ++++++---- .../luci-app-travelmate/po/ca/travelmate.po | 897 +++++++----- .../luci-app-travelmate/po/cs/travelmate.po | 878 ++++++++---- .../luci-app-travelmate/po/de/travelmate.po | 927 ++++++++----- .../luci-app-travelmate/po/el/travelmate.po | 772 +++++++---- .../luci-app-travelmate/po/en/travelmate.po | 764 ++++++---- .../luci-app-travelmate/po/es/travelmate.po | 1224 ++++++++++++----- .../luci-app-travelmate/po/fi/travelmate.po | 859 ++++++++---- .../luci-app-travelmate/po/fr/travelmate.po | 883 ++++++++---- .../luci-app-travelmate/po/he/travelmate.po | 764 ++++++---- .../luci-app-travelmate/po/hi/travelmate.po | 764 ++++++---- .../luci-app-travelmate/po/hu/travelmate.po | 879 ++++++++---- .../luci-app-travelmate/po/it/travelmate.po | 819 +++++++---- .../luci-app-travelmate/po/ja/travelmate.po | 1187 +++++++++++----- .../luci-app-travelmate/po/ko/travelmate.po | 779 +++++++---- .../luci-app-travelmate/po/mr/travelmate.po | 769 +++++++---- .../luci-app-travelmate/po/ms/travelmate.po | 772 +++++++---- .../po/nb_NO/travelmate.po | 786 +++++++---- .../luci-app-travelmate/po/pl/travelmate.po | 1220 +++++++++++----- .../luci-app-travelmate/po/pt/travelmate.po | 1215 +++++++++++----- .../po/pt_BR/travelmate.po | 1215 +++++++++++----- .../luci-app-travelmate/po/ro/travelmate.po | 828 +++++++---- .../luci-app-travelmate/po/ru/travelmate.po | 1072 ++++++++++----- .../luci-app-travelmate/po/sk/travelmate.po | 808 +++++++---- .../luci-app-travelmate/po/sv/travelmate.po | 869 ++++++++---- .../po/templates/travelmate.pot | 764 ++++++---- .../luci-app-travelmate/po/tr/travelmate.po | 787 +++++++---- .../luci-app-travelmate/po/uk/travelmate.po | 860 ++++++++---- .../luci-app-travelmate/po/vi/travelmate.po | 777 +++++++---- .../po/zh_Hans/travelmate.po | 1178 +++++++++++----- .../po/zh_Hant/travelmate.po | 1127 ++++++++++----- .../luci/menu.d/luci-app-travelmate.json | 42 + .../share/rpcd/acl.d/luci-app-travelmate.json | 25 +- 54 files changed, 20962 insertions(+), 11686 deletions(-) create mode 100644 applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js create mode 100644 applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js create mode 100644 applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js delete mode 100644 applications/luci-app-travelmate/luasrc/controller/travelmate.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_delete.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua delete mode 100644 applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_order.lua delete mode 100644 applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm delete mode 100644 applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm delete mode 100644 applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm delete mode 100644 applications/luci-app-travelmate/luasrc/view/travelmate/travelmate_css.htm delete mode 100644 applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm create mode 100644 applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json diff --git a/applications/luci-app-travelmate/Makefile b/applications/luci-app-travelmate/Makefile index 4115dadbef..08ad6c4a5b 100644 --- a/applications/luci-app-travelmate/Makefile +++ b/applications/luci-app-travelmate/Makefile @@ -1,13 +1,14 @@ -# Copyright 2017-2018 Dirk Brenken (dev@brenken.org) +# Copyright 2017-2020 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:=+luci-compat +travelmate +luci-lib-jsonc +LUCI_DEPENDS:=+travelmate +luci-lib-jsonc LUCI_PKGARCH:=all +PKG_LICENSE:=Apache-2.0 + include ../../luci.mk # call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js new file mode 100644 index 0000000000..d004ed4d2f --- /dev/null +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js @@ -0,0 +1,42 @@ +'use strict'; +'require view'; +'require poll'; +'require fs'; + +return view.extend({ + load: function() { + return Promise.all([ + L.resolveDefault(fs.stat('/sbin/logread'), null), + L.resolveDefault(fs.stat('/usr/sbin/logread'), null) + ]); + }, + render: function(stat) { + var logger = stat[0] ? stat[0].path : stat[1] ? stat[1].path : null; + poll.add(function() { + return L.resolveDefault(fs.exec_direct(logger, ['-e', 'trm-'])).then(function(res) { + var log = document.getElementById("logfile"); + if (res) { + log.value = res.trim(); + } + else { + log.value = _('No travelmate related logs yet!'); + } + log.scrollTop = log.scrollHeight; + }); + }); + return E('div', { class: 'cbi-map' }, + E('div', { class: 'cbi-section' }, [ + E('div', { class: 'cbi-section-descr' }, _('The syslog output, pre-filtered for travelmate related messages only.')), + E('textarea', { + 'id': 'logfile', + 'style': 'width: 100% !important; padding: 5px; font-family: monospace', + 'readonly': 'readonly', + 'wrap': 'off', + 'rows': 25 + }) + ])); + }, + handleSaveApply: null, + handleSave: null, + handleReset: null +}); 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 new file mode 100644 index 0000000000..0ea48766e6 --- /dev/null +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js @@ -0,0 +1,430 @@ +'use strict'; +'require view'; +'require poll'; +'require fs'; +'require ui'; +'require uci'; +'require form'; +'require tools.widgets as widgets'; + +/* + button handling +*/ +async function handleAction(ev) { + if (ev === 'restart') { + fs.exec_direct('/etc/init.d/travelmate', [ev]) + } + if (ev === 'setup') { + var ifaceValue = String(uci.get('travelmate', 'global', 'trm_iface') || ''); + L.ui.showModal(_('Interface Wizard'), [ + E('p', _('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.')), + E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ + E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ + E('input', { 'class': 'cbi-input-text', 'id': 'iface', 'placeholder': 'trm_wwan', 'value': ifaceValue, 'maxlength': '15', 'spellcheck': 'false' }, [ + ]), + '\xa0\xa0\xa0', + _('The uplink interface name') + ]), + E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ + E('input', { 'class': 'cbi-input-text', 'id': 'zone', 'placeholder': 'wan', 'maxlength': '15', 'spellcheck': 'false' }), + '\xa0\xa0\xa0', + _('The firewall zone name') + ]), + E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [ + E('input', { 'class': 'cbi-input-text', 'id': 'metric', 'placeholder': '100', 'maxlength': '3', 'spellcheck': 'false' }), + '\xa0\xa0\xa0', + _('The interface metric') + ]) + ]), + E('div', { 'class': 'right' }, [ + E('button', { + 'class': 'btn', + 'click': L.hideModal + }, _('Dismiss')), + ' ', + E('button', { + 'class': 'cbi-button cbi-button-positive important', + 'click': ui.createHandlerFn(this, function(ev) { + var iface = document.getElementById('iface').value || 'trm_wwan', + zone = document.getElementById('zone').value || 'wan', + metric = document.getElementById('metric').value || '100'; + L.resolveDefault(fs.exec_direct('/etc/init.d/travelmate', ['setup', iface, zone, metric])) + .then(function(res) { + if (res) { + ui.addNotification(null, E('p', res.trim() + '.'), 'error'); + } else { + ui.addNotification(null, E('p', _('The uplink interface has been updated.')), 'info'); + } + }); + L.hideModal(); + }) + }, _('Save')) + ]) + ]); + return document.getElementById('iface').focus(); + } + + if (ev === 'qrcode') { + return Promise.all([ + uci.load('wireless') + ]).then(function() { + var w_sid, w_device, w_ssid, w_enc, w_key, w_hidden, result, + w_sections = uci.sections('wireless', 'wifi-iface'), + optionsAP = [E('option', { value: '' }, [_('-- AP Selection --')])]; + for (var i = 0; i < w_sections.length; i++) { + if (w_sections[i].mode === 'ap' && w_sections[i].disabled !== '1') { + w_sid = i; + w_device = w_sections[i].device; + w_ssid = w_sections[i].ssid; + optionsAP.push(E('option', { value: w_sid }, w_device + ', ' + w_ssid)); + } + } + var selectAP = E('select', { + id: 'selectID', + class: 'cbi-input-select', + change: function(ev) { + result = document.getElementById('qrcode'); + if (document.getElementById("selectID").value) { + w_sid = document.getElementById("selectID").value; + w_ssid = w_sections[w_sid].ssid; + w_enc = w_sections[w_sid].encryption; + w_key = w_sections[w_sid].key; + w_hidden = (w_sections[w_sid].hidden == 1 ? 'true' : 'false'); + if (w_enc.startsWith('psk')) { + w_enc = 'WPA'; + } + else if (w_enc === 'none') { + w_enc = 'nopass'; + w_key = 'nokey'; + } + L.resolveDefault(fs.exec_direct('/usr/bin/qrencode', ['--inline', '--8bit', '--type=SVG', '--output=-', 'WIFI:S:' + w_ssid + ';T:' + w_enc + ';P:' + w_key + ';H:' + w_hidden + ';']), null).then(function(res) { + if (res) { + result.innerHTML = res.trim(); + } + else { + result.innerHTML = _('The QR-Code could not be generated!'); + } + }); + } + else { + result.innerHTML = ''; + } + } + }, optionsAP); + L.ui.showModal(_('QR-Code Overview'), [ + E('p', _('Render the QR-Code of the selected Access Point to comfortably transfer the WLAN credentials to your mobile devices.')), + E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [ + E('label', { 'class': 'cbi-input-select', 'style': 'padding-top:.5em' }, [ + selectAP, + ]) + ]), + '\xa0', + E('div', { + 'id': 'qrcode' + }), + E('div', { 'class': 'right' }, [ + E('button', { + 'class': 'btn', + 'click': L.hideModal + }, _('Dismiss')) + ]) + ]); + }); + return; + } +} + +return view.extend({ + load: function() { + return Promise.all([ + uci.load('travelmate') + ]); + }, + + render: function(result) { + var m, s, o; + + m = new form.Map('travelmate', 'Travelmate', _('Configuration of the travelmate package to to enable travel router functionality. \ + For further information check the online documentation.
\ + Please note: On first start please call the \'Interface Wizard\' once, to make the necessary network- and firewall settings.')); + + /* + poll runtime information + */ + pollData: poll.add(function() { + return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function(res) { + var status = document.getElementById('status'); + if (res) { + L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function(res) { + if (res) { + var info = JSON.parse(res); + if (status && info) { + status.textContent = (info.data.travelmate_status || '-') + ' / ' + (info.data.travelmate_version || '-'); + if (info.data.travelmate_status.startsWith('running')) { + if (!status.classList.contains("spinning")) { + status.classList.add("spinning"); + } + } else { + if (status.classList.contains("spinning")) { + status.classList.remove("spinning"); + } + } + } else if (status) { + status.textContent = '-'; + if (status.classList.contains("spinning")) { + status.classList.remove("spinning"); + } + } + var station_id = document.getElementById('station_id'); + if (station_id && info) { + station_id.textContent = info.data.station_id || '-'; + } + var station_mac = document.getElementById('station_mac'); + if (station_mac && info) { + station_mac.textContent = info.data.station_mac || '-'; + } + var station_interface = document.getElementById('station_interface'); + if (station_interface && info) { + station_interface.textContent = info.data.station_interface || '-'; + } + var wpa_flags = document.getElementById('wpa_flags'); + if (wpa_flags && info) { + wpa_flags.textContent = info.data.wpa_flags || '-'; + } + var run_flags = document.getElementById('run_flags'); + if (run_flags && info) { + run_flags.textContent = info.data.run_flags || '-'; + } + var ext_hooks = document.getElementById('ext_hooks'); + if (ext_hooks && info) { + ext_hooks.textContent = info.data.ext_hooks || '-'; + } + var run = document.getElementById('run'); + if (run && info) { + run.textContent = info.data.last_run || '-'; + } + } + }); + } + else { + if (status && status.classList.contains("spinning")) { + status.textContent = '-'; + status.classList.remove("spinning"); + } + } + }); + }, 1); + + /* + runtime information and buttons + */ + s = m.section(form.NamedSection, 'global'); + s.render = L.bind(function(view, section_id) { + return E('div', { 'class': 'cbi-section' }, [ + E('h3', _('Information')), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Status / Version')), + E('div', { 'class': 'cbi-value-field', 'id': 'status', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station ID')), + E('div', { 'class': 'cbi-value-field', 'id': 'station_id', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station MAC')), + E('div', { 'class': 'cbi-value-field', 'id': 'station_mac', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station Interface')), + E('div', { 'class': 'cbi-value-field', 'id': 'station_interface', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('WPA Flags')), + E('div', { 'class': 'cbi-value-field', 'id': 'wpa_flags', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')), + E('div', { 'class': 'cbi-value-field', 'id': 'run_flags', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Ext. Hooks')), + E('div', { 'class': 'cbi-value-field', 'id': 'ext_hooks', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { 'class': 'cbi-value', 'style': 'margin-bottom:5px' }, [ + E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')), + E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'font-weight: bold;margin-bottom:5px;color:#37c' },'-')]), + E('div', { class: 'right' }, [ + E('button', { + 'class': 'cbi-button cbi-button-apply', + 'id': 'btn_suspend', + 'click': ui.createHandlerFn(this, function() { + L.resolveDefault(fs.stat('/usr/bin/qrencode'), null).then(function(res) { + if (res) { + return handleAction('qrcode'); + } + return ui.addNotification(null, E('p', _('Please install the separate \'qrencode\' package.')), 'info'); + }) + }) + }, [ _('AP QR-Codes...') ]), + '\xa0', + E('button', { + 'class': 'cbi-button cbi-button-reset', + 'click': ui.createHandlerFn(this, function() { + return handleAction('setup'); + }) + }, [ _('Interface Wizard...') ]) + ]) + ]); + }, o, this); + this.pollData; + + /* + tabbed config section + */ + s = m.section(form.NamedSection, 'global', 'travelmate', _('Settings')); + s.addremove = false; + s.tab('general', _('General Settings')); + s.tab('additional', _('Additional Settings')); + s.tab('adv_vpn', _('VPN Settings'), _('Please note: VPN connections require the separate setup of the Wireguard or OpenVPN package.

 

')); + s.tab('adv_email', _('E-Mail Settings'), _('Please note: E-Mail notifications require the separate setup of the mstmp package.

 

')); + + /* + general settings tab + */ + o = s.taboption('general', form.Flag, 'trm_enabled', _('Enabled'), _('Enable the travelmate service.')); + o.rmempty = false; + + o = s.taboption('general', form.Flag, 'trm_debug', _('Verbose Debug Logging'), _('Enable verbose debug logging in case of any processing errors.')); + o.rmempty = false; + + o = s.taboption('general', form.Value, 'trm_radio', _('Radio Selection'), _('Restrict travelmate to a single radio or change the overall scanning order (e.g. \'radio1 radio0\').')); + o.placeholder = 'radio0'; + o.rmempty = true; + + o = s.taboption('general', form.Flag, 'trm_captive', _('Captive Portal Detection'), _('Check the internet availability, handle captive portal redirections and keep the uplink connection \'alive\'.')); + o.default = 1; + o.rmempty = false; + + 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; + o.rmempty = false; + + o = s.taboption('general', form.Flag, 'trm_proactive', _('ProActive Uplink Switch'), _('Proactively scan and switch to a higher prioritized uplink, despite of an already existing connection.')); + o.default = 1; + o.rmempty = false; + + o = s.taboption('general', form.Flag, 'trm_autoadd', _('AutoAdd Open Uplinks'), _('Automatically add open uplinks like hotel captive portals to your wireless config.')); + o.default = 0; + o.rmempty = false; + + o = s.taboption('general', form.Flag, 'trm_randomize', _('Randomize MAC Addresses'), _('Generate a random unicast MAC address for each uplink connection.')); + o.default = 0; + o.rmempty = false; + + /* + additional settings tab + */ + o = s.taboption('additional', form.Value, 'trm_triggerdelay', _('Trigger Delay'), _('Additional trigger delay in seconds before travelmate processing begins.')); + o.placeholder = '2'; + o.datatype = 'range(1,60)'; + o.rmempty = true; + + o = s.taboption('additional', form.Value, 'trm_maxretry', _('Connection Limit'), _('Retry limit to connect to an uplink.')); + o.placeholder = '3'; + o.datatype = 'range(1,10)'; + o.rmempty = true; + + o = s.taboption('additional', form.Value, 'trm_minquality', _('Signal Quality Threshold'), _('Minimum signal quality threshold as percent for conditional uplink (dis-) connections.')); + o.placeholder = '35'; + o.datatype = 'range(20,80)'; + o.rmempty = true; + + o = s.taboption('additional', form.Value, 'trm_maxwait', _('Interface Timeout'), _('How long should travelmate wait for a successful wlan uplink connection.')); + o.placeholder = '30'; + o.datatype = 'range(20,40)'; + o.rmempty = true; + + o = s.taboption('additional', form.Value, 'trm_timeout', _('Overall Timeout'), _('Overall retry timeout in seconds.')); + o.placeholder = '60'; + o.datatype = 'range(30,300)'; + o.rmempty = true; + + o = s.taboption('additional', form.Value, 'trm_scanbuffer', _('Scan Buffer Size'), _('Buffer size in bytes to prepare nearby scan results.')); + o.placeholder = '1024'; + o.datatype = 'range(256,4096)'; + o.rmempty = true; + + o = s.taboption('additional', form.ListValue, 'trm_captiveurl', _('Captive Portal URL'), _('The selected URL will be used for connectivity- and captive portal checks.')); + o.value('http://captive.apple.com', 'Apple (default)'); + o.value('http://connectivity-check.ubuntu.com', 'Ubuntu'); + o.value('http://connectivitycheck.android.com/generate_204', 'Google'); + o.value('http://www.msftncsi.com/ncsi.txt', 'Microsoft'); + o.optional = true; + 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:80.0) Gecko/20100101 Firefox/80.0', 'Firefox (default)'); + o.value('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36', 'Chromium'); + o.value('Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/85.0.4183.92 Mobile/15E148 Safari/604.1', 'Safari'); + o.value('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36 Edg/85.0.564.44', 'Edge'); + o.value('Mozilla/5.0 (Linux; Android 10; SM-G970F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.81 Mobile Safari/537.36 OPR/59.1.2926.54067', 'Opera'); + o.optional = true; + o.rmempty = true; + + o = s.taboption('additional', form.ListValue, 'trm_nice', _('Service Priority'), _('The selected priority will be used for travelmate processes.')); + o.value('-20', 'Highest Priority'); + o.value('-10', 'High Priority'); + o.value('0', 'Normal Priority (default)'); + o.value('10', 'Less Priority'); + o.value('19', 'Least Priority'); + o.optional = true; + o.rmempty = true; + + /* + advanced vpn settings tab + */ + o = s.taboption('adv_vpn', form.Flag, 'trm_vpn', _('VPN Hook'), _('Automatically handle VPN (re-) connections.')); + o.rmempty = false; + + o = s.taboption('adv_vpn', form.ListValue, 'trm_vpnservice', _('VPN Service')); + o.depends('trm_vpn', '1'); + o.value('wireguard'); + o.value('openvpn'); + o.rmempty = true; + + o = s.taboption('adv_vpn', widgets.NetworkSelect, 'trm_vpniface', _('VPN Interface'), _('The logical vpn network interface, e.g. \'wg0\' or \'tun0\'.')); + o.depends('trm_vpn', '1'); + o.unspecified = false; + o.nocreate = true; + o.rmempty = true; + + o = s.taboption('adv_vpn', widgets.DeviceSelect, 'trm_landevice', _('LAN Device'), _('The lan network device, e.g. \'br-lan\'.')); + o.depends('trm_vpn', '1'); + o.unspecified = false; + o.nocreate = true; + o.rmempty = true; + + /* + advanced email settings tab + */ + o = s.taboption('adv_email', form.Flag, 'trm_mail', _('E-Mail Hook'), _('Sends notification E-Mails after every succesful uplink connect.')); + o.rmempty = false; + + o = s.taboption('adv_email', form.Value, 'trm_mailreceiver', _('E-Mail Receiver Address'), _('Receiver address for travelmate notification E-Mails.')); + o.depends('trm_mail', '1'); + o.placeholder = 'name@example.com'; + o.rmempty = true; + + o = s.taboption('adv_email', form.Value, 'trm_mailsender', _('E-Mail Sender Address'), _('Sender address for travelmate notification E-Mails.')); + o.depends({ 'trm_mailreceiver': '@', '!contains': true }); + o.placeholder = 'no-reply@travelmate'; + o.rmempty = true; + + o = s.taboption('adv_email', form.Value, 'trm_mailtopic', _('E-Mail Topic'), _('Topic for travelmate notification E-Mails.')); + o.depends({ 'trm_mailreceiver': '@', '!contains': true }); + o.placeholder = 'travelmate connection to \'\''; + o.rmempty = true; + + o = s.taboption('adv_email', form.Value, 'trm_mailprofile', _('E-Mail Profile'), _('Profile used by \'msmtp\' for travelmate notification E-Mails.')); + o.depends({ 'trm_mailreceiver': '@', '!contains': true }); + o.placeholder = 'trm_notify'; + o.rmempty = true; + + return m.render(); + }, + handleReset: null +}); 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 new file mode 100644 index 0000000000..d997636300 --- /dev/null +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js @@ -0,0 +1,879 @@ +'use strict'; +'require view'; +'require poll'; +'require fs'; +'require ui'; +'require uci'; +'require form'; +'require network'; +'require tools.widgets as widgets'; + +/* + remove wireless and stale travelmate sections +*/ +function handleRemove(sid) { + var w_sections, t_sections, match, changes; + + uci.remove('wireless', sid); + w_sections = uci.sections('wireless', 'wifi-iface'); + t_sections = uci.sections('travelmate', 'uplink'); + for (var i = 0; i < t_sections.length; i++) { + match = false; + for (var j = 0; j < w_sections.length; j++) { + if (t_sections[i].device === w_sections[j].device && t_sections[i].ssid === w_sections[j].ssid && t_sections[i].bssid === w_sections[j].bssid) { + match = true; + break; + } + } + if (match === false) { + uci.remove('travelmate', t_sections[i]['.name']); + } + } + uci.save(); +} + +/* + add missing travelmate sections +*/ +function handleSectionsAdd(iface) { + var w_sections, t_sections, match, changes; + + 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; + } + match = false; + for (var j = 0; j < t_sections.length; j++) { + if (w_sections[i].device === t_sections[j].device && w_sections[i].ssid === t_sections[j].ssid && w_sections[i].bssid === t_sections[j].bssid) { + match = true; + break; + } + } + if (match === false) { + 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'); + } + } +} + +/* + update travelmate sections +*/ +function handleSectionsVal(action, section_id, option, value) { + var date, oldValue, w_device, w_ssid, w_bssid, t_sections; + + w_device = uci.get('wireless', section_id, 'device'); + w_ssid = uci.get('wireless', section_id, 'ssid'); + w_bssid = uci.get('wireless', section_id, 'bssid'); + t_sections = uci.sections('travelmate', 'uplink'); + + for (var i = 0; i < t_sections.length; i++) { + if (t_sections[i].device === w_device && t_sections[i].ssid === w_ssid && t_sections[i].bssid === w_bssid) { + if (action === 'get') { + return t_sections[i][option]; + } + else if (action === 'set') { + if (option === 'enabled') { + oldValue = t_sections[i][option]; + if (oldValue !== value && value === '0') { + date = new Date(new Date().getTime() - new Date().getTimezoneOffset()*60*1000).toISOString().substr(0,19).replace(/-/g, '.').replace('T', '-'); + uci.set('travelmate', t_sections[i]['.name'], 'con_end', date); + } + else if (oldValue !== value && value === '1') { + uci.unset('travelmate', t_sections[i]['.name'], 'con_end'); + } + } + return uci.set('travelmate', t_sections[i]['.name'], option, value); + } + else if (action === 'del') { + return uci.unset('travelmate', t_sections[i]['.name'], option); + } + } + } +} + +/* + update travelmate status +*/ +function handleStatus() { + poll.add(function() { + L.resolveDefault(fs.stat('/var/run/travelmate.refresh'), null).then(function(res) { + if (res) { + L.resolveDefault(fs.read_direct('/var/run/travelmate.refresh'), null).then(function(res) { + fs.remove('/var/run/travelmate.refresh'); + if (res && res === 'ui_reload') { + location.reload(); + } + else if (res && res === 'cfg_reload') { + if (document.readyState === 'complete') { + uci.unload('wireless'); + uci.unload('travelmate'); + } + return Promise.all([ + uci.load('wireless'), + uci.load('travelmate') + ]).then(function() { + var item, value, + container = document.querySelectorAll('.cbi-section-table-row[data-sid]'); + for (var i = 0; i < container.length; i++) { + item = container[i].querySelector('.cbi-value-field[data-title="Enabled"]'); + value = handleSectionsVal('get', container[i].getAttribute('data-sid'), 'enabled'); + item.textContent = (value == 0 ? 'No' : 'Yes'); + } + }); + } + }); + } + }); + return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function(res) { + if (res) { + L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function(res) { + if (res) { + var info = JSON.parse(res); + if (info) { + var t_device, t_ssid, t_bssid, oldUplinkView, newUplinkView, + uplinkId = info.data.station_id.trim().split('/'), + oldUplinkView = document.getElementsByName('uplinkStation'), + w_sections = uci.sections('wireless', 'wifi-iface'); + + t_device = uplinkId[0]; + t_bssid = uplinkId[uplinkId.length-1]; + for (var i = 1; i < uplinkId.length-1; i++) { + if (!t_ssid) { + t_ssid = uplinkId[i]; + } + else { + t_ssid = t_ssid + '/' + uplinkId[i]; + } + } + if (t_ssid === '-') { + if (oldUplinkView.length > 0) { + oldUplinkView[0].removeAttribute('style'); + oldUplinkView[0].removeAttribute('name', 'uplinkStation'); + } + } + else { + for (var i = 0; i < w_sections.length; i++) { + newUplinkView = document.getElementById('cbi-wireless-' + w_sections[i]['.name']); + if (t_device === w_sections[i].device && t_ssid === w_sections[i].ssid && t_bssid === (w_sections[i].bssid || '-')) { + if (oldUplinkView.length === 0 && newUplinkView) { + newUplinkView.setAttribute('name', 'uplinkStation'); + newUplinkView.setAttribute('style', 'text-align: left !important; color: #37c !important;font-weight: bold !important;'); + } + else if (oldUplinkView.length > 0 && newUplinkView && oldUplinkView[0].getAttribute('id') !== newUplinkView.getAttribute('id')) { + oldUplinkView[0].removeAttribute('style'); + oldUplinkView[0].removeAttribute('name', 'uplinkStation'); + newUplinkView.setAttribute('name', 'uplinkStation'); + newUplinkView.setAttribute('style', 'text-align: left !important; color: #37c !important;font-weight: bold !important;'); + } + } + } + } + } + } + }); + } + }); + }, 1); +} + +return view.extend({ + load: function() { + return Promise.all([ + uci.load('wireless'), + uci.load('travelmate') + ]); + }, + + render: function() { + var m, s, o, + iface = uci.get('travelmate', 'global', 'trm_iface') || 'trm_wwan'; + + m = new form.Map('wireless'); + m.chain('travelmate'); + s = m.section(form.GridSection, 'wifi-iface', null, _('Overview of all configured uplinks for travelmate.
\ + You can edit, remove or prioritize existing uplinks by drag \& drop and scan for new ones. The currently used uplink is emphasized in blue.')); + s.anonymous = true; + s.sortable = true; + s.filter = function(section_id) { + return (uci.get('wireless', section_id, 'network') == iface && uci.get('wireless', section_id, 'mode') == 'sta'); + }; + s.tab('wireless', _('Wireless Settings')); + s.tab('travelmate', _('Travelmate Settings')); + s.renderRowActions = function(section_id) { + var btns; + btns = [ + E('button', { + 'class': 'btn cbi-button drag-handle center', + 'title': _('Drag to reorder'), + 'style': 'cursor:move', + 'disabled': this.map.readonly || null + }, '☰'), + E('button', { + 'class': 'cbi-button cbi-button-action important', + 'title': _('Edit this network'), + 'click': ui.createHandlerFn(this, 'renderMoreOptionsModal', section_id) + }, _('Edit')), + E('button', { + 'class': 'cbi-button cbi-button-negative remove', + 'title': _('Delete this network'), + 'click': ui.createHandlerFn(this, handleRemove, section_id) + }, _('Del')) + ]; + return E('div', { 'class': 'td middle cbi-section-actions' }, E('div', btns)); + }; + + o = s.taboption('travelmate', form.Flag, '_enabled', _('Enabled')); + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'enabled'; + o.rmempty = false; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'enabled'); + } + o.write = function(section_id, value) { + return handleSectionsVal('set', section_id, 'enabled', value); + } + + o = s.taboption('wireless', form.Value, 'device', _('Device')); + o.readonly = true; + + o = s.taboption('wireless', form.Value, 'ssid', _('SSID')); + o.datatype = 'maxlength(32)'; + o.readonly = true; + + o = s.taboption('wireless', form.Value, 'bssid', _('BSSID')); + o.datatype = 'macaddr'; + o.readonly = true; + + o = s.taboption('wireless', form.ListValue, 'encryption', _('Encryption')); + o.value('sae', _('WPA3 Pers.')); + o.value('sae-mixed', _('WPA2/WPA3 Pers. (CCMP)')); + o.value('psk2', _('WPA2 Pers.')); + o.value('psk2+ccmp', _('WPA2 Pers. (CCMP)')); + o.value('psk2+tkip', _('WPA2 Pers. (TKIP)')); + o.value('psk', _('WPA Pers.')); + o.value('psk+ccmp', _('WPA Pers. (CCMP)')); + o.value('psk+tkip', _('WPA Pers. (TKIP)')); + o.value('psk-mixed+ccmp', _('WPA/WPA2 Pers. (CCMP)')); + o.value('psk-mixed+tkip', _('WPA/WPA2 Pers. (TKIP)')); + o.value('wpa3', _('WPA3 Ent.')); + o.value('wpa3-mixed', _('WPA3/WPA2 Ent.')); + o.value('wpa2+ccmp', _('WPA2 Ent. (CCMP)')); + o.value('wpa2+tkip', _('WPA2 Ent. (TKIP)')); + o.value('wpa+ccmp', _('WPA Ent. (CCMP)')); + o.value('wpa+tkip', _('WPA Ent. (TKIP)')); + o.value('wpa-mixed+ccmp', _('WPA/WPA2 Ent. (CCMP)')); + o.value('wpa-mixed+tkip', _('WPA/WPA2 Ent. (TKIP)')); + o.value('owe', _('OWE')); + o.value('none', _('none')); + o.default = 'none'; + o.textvalue = function(section_id) { + var cfgvalue = this.map.data.get('wireless', section_id, 'encryption'); + switch (cfgvalue) { + case 'sae': + cfgvalue = 'WPA3 Pers. (SAE)'; + break; + case 'sae-mixed': + cfgvalue = 'WPA2/WPA3 Pers. (CCMP)'; + break; + case 'psk2': + cfgvalue = 'WPA2 Pers.'; + break; + case 'psk2+ccmp': + cfgvalue = 'WPA2 Pers. (CCMP)'; + break; + case 'psk2+tkip': + cfgvalue = 'WPA2 Ent. (TKIP)'; + break; + case 'psk': + cfgvalue = 'WPA Pers.'; + break; + case 'psk-mixed+ccmp': + cfgvalue = 'WPA/WPA2 Pers. (CCMP)'; + break; + case 'psk-mixed+tkip': + cfgvalue = 'WPA/WPA2 Pers. (TKIP)'; + break; + case 'wpa3': + cfgvalue = 'WPA3 Ent.'; + break; + case 'wpa3-mixed': + cfgvalue = 'WPA3/WPA2 Ent.'; + break; + case 'wpa2+ccmp': + cfgvalue = 'WPA2 Ent. (CCMP)'; + break; + case 'wpa2+tkip': + cfgvalue = 'WPA2 Ent. (TKIP)'; + break; + case 'wpa+ccmp': + cfgvalue = 'WPA Ent. (CCMP)'; + break; + case 'wpa+tkip': + cfgvalue = 'WPA Ent. (TKIP)'; + break; + case 'wpa-mixed+ccmp': + cfgvalue = 'WPA/WPA2 Ent. (CCMP)'; + break; + case 'wpa-mixed+tkip': + cfgvalue = 'WPA/WPA2 Ent. (TKIP)'; + break; + case 'owe': + cfgvalue = 'WPA3 OWE (CCMP)'; + break; + case 'none': + cfgvalue = 'none'; + break; + } + return cfgvalue; + }; + handleStatus(); + + /* + modal wireless tab + */ + o = s.taboption('wireless', form.Value, 'key', _('Password')); + o.datatype = 'wpakey'; + o.depends({ encryption: 'sae', '!contains': true }); + o.depends({ encryption: 'psk', '!contains': true }); + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + o.password = true; + + o = s.taboption('wireless', form.ListValue, 'eap_type', _('EAP-Method')); + o.value('tls', _('TLS')); + o.value('ttls', _('TTLS')); + o.value('peap', _('PEAP')); + o.value('fast', _('FAST')); + o.default = 'peap'; + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + + o = s.taboption('wireless', form.ListValue, 'auth', _('Authentication')); + o.value('PAP', _('PAP')); + o.value('CHAP', _('CHAP')); + o.value('MSCHAP', _('MSCHAP')); + o.value('MSCHAPV2', _('MSCHAPV2')); + o.value('EAP-GTC', _('EAP-GTC')); + o.value('EAP-MD5', _('EAP-MD5')); + o.value('EAP-MSCHAPV2', _('EAP-MSCHAPV2')); + o.value('EAP-TLS', _('EAP-TLS')); + o.value('auth=PAP', _('auth=PAP')); + o.value('auth=MSCHAPV2', _('auth=MSCHAPV2')); + o.default = 'EAP-MSCHAPV2'; + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + + o = s.taboption('wireless', form.Value, 'identify', _('Identify')); + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + + o = s.taboption('wireless', form.Value, 'ca_cert', _('Path to CA-Certificate')); + o.depends({ eap_type: 'tls' }); + o.modalonly = true; + o.rmempty = true; + + o = s.taboption('wireless', form.Value, 'client_cert', _('Path to Client-Certificate')); + o.depends({ eap_type: 'tls' }); + o.modalonly = true; + o.rmempty = true; + + o = s.taboption('wireless', form.Value, 'priv_key', _('Path to Private Key')); + o.depends({ eap_type: 'tls' }); + o.modalonly = true; + o.rmempty = true; + + o = s.taboption('wireless', form.Value, 'priv_key_pwd', _('Password of Private Key')); + o.datatype = 'wpakey'; + o.depends({ eap_type: 'tls' }); + o.modalonly = true; + o.password = true; + o.rmempty = true; + + /* + modal travelmate tab + */ + o = s.taboption('travelmate', form.Value, '_ssid', _('SSID')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'ssid'; + o.rmempty = false; + o.readonly = true; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'ssid'); + } + + o = s.taboption('travelmate', form.Value, '_bssid', _('BSSID')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'bssid'; + o.rmempty = true; + o.readonly = true; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'bssid'); + } + + o = s.taboption('travelmate', form.Value, '_con_start', _('Connection Start')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'con_start'; + o.rmempty = true; + o.readonly = true; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'con_start'); + } + + o = s.taboption('travelmate', form.Value, '_con_end', _('Connection End')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'con_end'; + o.rmempty = true; + o.readonly = true; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'con_end'); + } + + o = s.taboption('travelmate', form.Value, '_con_start_expiry', _('Connection Start Expiry'), + _('Automatically disable the uplink after n minutes, e.g. for timed connections.
\ + The default of \'0\' disables this feature.')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'con_start_expiry'; + o.rmempty = false; + o.placeholder = '0'; + o.default = '0'; + o.datatype = 'range(0,720)'; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'con_start_expiry'); + } + o.write = function(section_id, value) { + return handleSectionsVal('set', section_id, 'con_start_expiry', value); + } + + o = s.taboption('travelmate', form.Value, '_con_end_expiry', _('Connection End Expiry'), + _('Automatically (re-)enable the uplink after n minutes, e.g. after failed login attempts.
\ + The default of \'0\' disables this feature.')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'con_end_expiry'; + o.rmempty = false; + o.placeholder = '0'; + o.default = '0'; + o.datatype = 'range(0,720)'; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'con_end_expiry'); + } + o.write = function(section_id, value) { + return handleSectionsVal('set', section_id, 'con_end_expiry', value); + } + + o = s.taboption('travelmate', form.FileUpload, '_script', _('Auto Login Script'), + _('External script reference which will be called for automated captive portal logins.')); + o.root_directory = '/etc/travelmate'; + o.enable_remove = false; + o.enable_upload = false; + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'script'; + o.renderWidget = function(section_id, option_index, cfgvalue) { + var browserEl = new ui.FileUpload((cfgvalue != null) ? cfgvalue : this.default, { + id: this.cbid(section_id), + name: this.cbid(section_id), + show_hidden: this.show_hidden, + enable_upload: this.enable_upload, + enable_remove: this.enable_remove, + root_directory: this.root_directory, + disabled: (this.readonly != null) ? this.readonly : this.map.readonly + }); + browserEl.renderListing = function(container, path, list) { + return ui.FileUpload.prototype.renderListing.apply(this, [ + container, path, + list.filter(function(entry) { + return ((entry.type == 'directory') || (entry.type == 'file' && entry.name.match(/\.login$/))); + }) + ]); + }; + return browserEl.render(); + }; + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'script'); + } + o.write = function(section_id, value) { + return handleSectionsVal('set', section_id, 'script', value); + } + o.remove = function(section_id) { + return handleSectionsVal('del', section_id, 'script'); + } + + o = s.taboption('travelmate', form.Value, '_args', _('Script Arguments'), + _('Space separated list of additional arguments passed to the Auto Login Script, i.e. username and password')); + o.modalonly = true; + o.uciconfig = 'travelmate'; + o.ucisection = 'uplink'; + o.ucioption = 'script_args'; + o.rmempty = true; + o.depends({ _script: '/etc/travelmate', '!contains': true }); + o.cfgvalue = function(section_id) { + return handleSectionsVal('get', section_id, 'script_args'); + } + o.write = function(section_id, value) { + return handleSectionsVal('set', section_id, 'script_args', value); + } + o.remove = function(section_id) { + return handleSectionsVal('del', section_id, 'script_args'); + } + + /* + scan buttons + */ + s = m.section(form.GridSection, 'wifi-device'); + s.anonymous = true; + s.addremove = false; + s.render = function() { + return network.getWifiDevices().then(L.bind(function(radios) { + var radio, ifname, btns = []; + for (var i = 0; i < radios.length; i++) { + radio = radios[i].sid; + if (radio) { + btns.push(E('button', { + 'class': 'cbi-button cbi-button-apply', + 'id': radio, + 'click': ui.createHandlerFn(this, 'handleScan', radio) + }, [ _('Scan on ' + radio + '...') ]), + '\xa0') + } + } + return E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, E('div', { 'class': 'left', 'style': 'padding-top:5px; padding-bottom:5px' }, btns)); + }, this)) + }; + + /* + modal 'scan' dialog + */ + s.handleScan = function(radio) { + var table = E('div', { 'class': 'table' }, [ + E('div', { 'class': 'tr table-titles' }, [ + E('div', { 'class': 'th col-1 middle left' }, _('Strength')), + E('div', { 'class': 'th col-1 middle left hide-xs' }, _('Channel')), + E('div', { 'class': 'th col-2 middle left' }, _('SSID')), + E('div', { 'class': 'th col-2 middle left' }, _('BSSID')), + E('div', { 'class': 'th col-3 middle left' }, _('Encryption')), + E('div', { 'class': 'th cbi-section-actions right' }, '\xa0') + ]) + ]); + cbi_update_table(table, [], E('em', { class: 'spinning' }, _('Starting wireless scan on \'' + radio + '\'...'))); + + var md = ui.showModal(_('Wireless Scan'), [ + table, + E('div', { 'class': 'right' }, [ + E('button', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Dismiss')), + '\xa0', + E('button', { + 'class': 'cbi-button cbi-button-positive important', + 'click': L.bind(this.handleScan, this, radio) + }, _('Repeat Scan')) + ]) + ]); + + md.style.maxWidth = '90%'; + md.style.maxHeight = 'none'; + + return L.resolveDefault(fs.exec_direct('/etc/init.d/travelmate', [ 'scan', radio ]), null) + .then(L.bind(function(res) { + if (res) { + var lines, strength, channel, encryption, tbl_encryption, bssid, ssid, tbl_ssid, rows = []; + lines = res.trim().split('\n'); + for (var i = 0; i < lines.length; i++) { + if (lines[i].match(/^\s+[0-9]/)) { + encryption = lines[i].slice(80).trim(); + if (!encryption.includes('WEP')) { + strength = lines[i].slice(4,7).trim(); + channel = lines[i].slice(15,18).trim(); + bssid = lines[i].slice(60,77).trim(); + ssid = lines[i].slice(25,59).trim(); + if (ssid.startsWith('"')) { + ssid = ssid.slice(1, ssid.length-1); + tbl_ssid = ssid; + } + else { + ssid = "hidden"; + tbl_ssid = "hidden"; + } + switch (encryption) { + case 'WPA3 PSK (SAE)': + encryption = 'sae'; + tbl_encryption = 'WPA3 Pers. (SAE)'; + break; + case 'mixed WPA2/WPA3 PSK/SAE (CCMP)': + encryption = 'sae-mixed'; + tbl_encryption = 'WPA2/WPA3 Pers. (CCMP)'; + break; + case 'WPA2 PSK (CCMP)': + encryption = 'psk2+ccmp'; + tbl_encryption = 'WPA2 Pers. (CCMP)'; + break; + case 'WPA2 PSK (TKIP)': + encryption = 'psk2+tkip'; + tbl_encryption = 'WPA2 Pers. (TKIP)'; + break; + case 'mixed WPA/WPA2 PSK (TKIP, CCMP)': + encryption = 'psk-mixed+ccmp'; + tbl_encryption = 'WPA/WPA2 Pers. (CCMP)'; + break; + case 'WPA PSK (CCMP)': + encryption = 'psk2+ccmp'; + tbl_encryption = 'WPA Pers. (CCMP)'; + break; + case 'WPA PSK (TKIP)': + encryption = 'psk2+tkip'; + tbl_encryption = 'WPA Pers. (TKIP)'; + break; + case 'WPA2 802.1X (CCMP)': + encryption = 'wpa2+ccmp'; + tbl_encryption = 'WPA2 Ent. (CCMP)'; + break; + case 'WPA3 OWE (CCMP)': + encryption = 'owe'; + tbl_encryption = 'WPA3 OWE (CCMP)'; + break; + case 'none': + encryption = 'none'; + tbl_encryption = 'none'; + break; + } + rows.push([ + strength, + channel, + tbl_ssid, + bssid, + tbl_encryption, + E('div', { 'class': 'right' }, E('button', { + 'class': 'cbi-button cbi-button-action', + 'click': ui.createHandlerFn(this, 'handleAdd', radio, iface, ssid, bssid, encryption) + }, _('Add Uplink...'))) + ]); + } + } + else if (lines[i] === '::: No scan results') { + rows.push([ + 'No scan results' + ]); + } + } + } + else { + rows.push([ + 'No scan results' + ]); + } + cbi_update_table(table, rows); + }, this)); + }; + + /* + modal 'add' dialog + */ + s.handleAdd = function(radio, iface, ssid, bssid, encryption, ev) { + ui.hideModal; + var m2, s2, o2; + + m2 = new form.Map('wireless'), + s2 = m2.section(form.NamedSection, '_add_trm'); + + s2.render = function() { + return Promise.all([ + {}, + this.renderUCISection('_add_trm') + ]).then(this.renderContents.bind(this)); + }; + + o2 = s2.option(form.Value, 'device', _('Device Name')); + o2.default = radio; + o2.readonly = true; + + o2 = s2.option(form.Value, 'network', _('Interface Name')); + o2.default = iface; + o2.readonly = true; + + if (ssid === "hidden") { + o2 = s2.option(form.Value, 'ssid', _('SSID (hidden)')); + o2.placeholder = 'hidden SSID'; + } + else { + o2 = s2.option(form.Value, 'ssid', _('SSID')); + o2.default = ssid; + } + o2.datatype = 'maxlength(32)'; + o2.rmempty = false; + + o2 = s2.option(form.Flag, 'ignore_bssid', _('Ignore BSSID')); + if (ssid === "hidden") { + o2.default = '0'; + } + else { + o2.default = '1'; + } + + o2 = s2.option(form.Value, 'bssid', _('BSSID')); + o2.depends({ ignore_bssid: '0' }); + o2.datatype = 'macaddr'; + o2.rmempty = true; + o2.default = bssid; + + o2 = s2.option(form.ListValue, 'encryption', _('Encryption')); + o2.value('sae', _('WPA3 Pers. (SAE)')); + o2.value('sae-mixed', _('WPA2/WPA3 Pers. (CCMP)')); + o2.value('psk2', _('WPA2 Pers.')); + o2.value('psk2+ccmp', _('WPA2 Pers. (CCMP)')); + o2.value('psk2+tkip', _('WPA2 Pers. (TKIP)')); + o2.value('psk', _('WPA Pers.')); + o2.value('psk+ccmp', _('WPA Pers. (CCMP)')); + o2.value('psk+tkip', _('WPA Pers. (TKIP)')); + o2.value('psk-mixed+ccmp', _('WPA/WPA2 Pers. (CCMP)')); + o2.value('psk-mixed+tkip', _('WPA/WPA2 Pers. (TKIP)')); + o2.value('wpa3', _('WPA3 Ent.')); + o2.value('wpa3-mixed', _('WPA2/WPA3 Ent.')); + o2.value('wpa2+ccmp', _('WPA2 Ent. (CCMP)')); + o2.value('wpa2+tkip', _('WPA2 Ent. (TKIP)')); + o2.value('wpa+ccmp', _('WPA Ent. (CCMP)')); + o2.value('wpa+tkip', _('WPA Ent. (TKIP)')); + o2.value('wpa-mixed+ccmp', _('WPA/WPA2 Ent. (CCMP)')); + o2.value('wpa-mixed+tkip', _('WPA/WPA2 Ent. (TKIP)')); + o2.value('owe', _('WPA3 OWE (CCMP)')); + o2.value('none', _('none')); + o2.default = encryption; + + o2 = s2.option(form.Value, 'key', _('Password')); + o2.depends({ encryption: 'sae', '!contains': true }); + o2.depends({ encryption: 'psk', '!contains': true }); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.datatype = 'wpakey'; + o2.password = true; + + o2 = s2.option(form.ListValue, 'eap_type', _('EAP-Method')); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.value('tls', _('TLS')); + o2.value('ttls', _('TTLS')); + o2.value('peap', _('PEAP')); + o2.value('fast', _('FAST')); + o2.default = 'peap'; + + o2 = s2.option(form.ListValue, 'auth', _('Authentication')); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.value('PAP', _('PAP')); + o2.value('CHAP', _('CHAP')); + o2.value('MSCHAP', _('MSCHAP')); + o2.value('MSCHAPV2', _('MSCHAPV2')); + o2.value('EAP-GTC', _('EAP-GTC')); + o2.value('EAP-MD5', _('EAP-MD5')); + o2.value('EAP-MSCHAPV2', _('EAP-MSCHAPV2')); + o2.value('EAP-TLS', _('EAP-TLS')); + o2.value('auth=PAP', _('auth=PAP')); + o2.value('auth=MSCHAPV2', _('auth=MSCHAPV2')); + o2.default = 'EAP-MSCHAPV2'; + + o2 = s2.option(form.Value, 'identify', _('Identify')); + o2.depends({ encryption: 'wpa', '!contains': true }); + + o2 = s2.option(form.Value, 'ca_cert', _('Path to CA-Certificate')); + o2.depends({ eap_type: 'tls' }); + o2.rmempty = true; + + o2 = s2.option(form.Value, 'client_cert', _('Path to Client-Certificate')); + o2.depends({ eap_type: 'tls' }); + o2.rmempty = true; + + o2 = s2.option(form.Value, 'priv_key', _('Path to Private Key')); + o2.depends({ eap_type: 'tls' }); + o2.rmempty = true; + + o2 = s2.option(form.Value, 'priv_key_pwd', _('Password of Private Key')); + o2.depends({ eap_type: 'tls' }); + o2.datatype = 'wpakey'; + o2.password = true; + o2.rmempty = true; + + return m2.render().then(L.bind(function(elements) { + ui.showModal(_('Add Uplink %q').replace(/%q/, '"%h"'.format(ssid)), [ + elements, + E('div', { 'class': 'right' }, [ + E('button', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Dismiss')), + '\xa0', + E('button', { + 'class': 'cbi-button cbi-button-positive important', + 'click': ui.createHandlerFn(this, 'handleSave', m2) + }, _('Save')) + ]) + ]); + }, this)); + }; + + /* + save new uplink + */ + s.handleSave = function(map, ev) { + var w_sections = uci.sections('wireless', 'wifi-iface'), + device = L.toArray(map.lookupOption('device', '_add_trm'))[0].formvalue('_add_trm'), + network = L.toArray(map.lookupOption('network', '_add_trm'))[0].formvalue('_add_trm'), + ssid = L.toArray(map.lookupOption('ssid', '_add_trm'))[0].formvalue('_add_trm'), + ignore_bssid = L.toArray(map.lookupOption('ignore_bssid', '_add_trm'))[0].formvalue('_add_trm'), + bssid = L.toArray(map.lookupOption('bssid', '_add_trm'))[0].formvalue('_add_trm'), + encryption = L.toArray(map.lookupOption('encryption', '_add_trm'))[0].formvalue('_add_trm'), + password = L.toArray(map.lookupOption('key', '_add_trm'))[0].formvalue('_add_trm'); + if (!ssid || ((encryption.includes('psk') || encryption.includes('wpa') || encryption.includes('sae')) && !password)) { + return; + } + for (var i = 0; i < w_sections.length; i++) { + if (w_sections[i].device === device && w_sections[i].ssid === ssid) { + if (ignore_bssid === '1' || (ignore_bssid === '0' && w_sections[i].bssid === bssid)) { + ui.hideModal(); + return; + } + } + } + + var offset = w_sections.length, + new_sid = 'trm_uplink' + (++offset); + while (uci.get('wireless', new_sid)) { + new_sid = 'trm_uplink' + (++offset); + } + uci.add('wireless', 'wifi-iface', new_sid); + uci.set('wireless', new_sid, 'device', device); + uci.set('wireless', new_sid, 'mode', 'sta'); + uci.set('wireless', new_sid, 'network', network); + uci.set('wireless', new_sid, 'ssid', ssid); + if (ignore_bssid === '0') { + uci.set('wireless', new_sid, 'bssid', bssid); + } + uci.set('wireless', new_sid, 'encryption', encryption); + uci.set('wireless', new_sid, 'key', password); + uci.set('wireless', new_sid, 'disabled', '1'); + handleSectionsAdd(network); + uci.save(); + ui.hideModal(); + }; + return m.render(); + }, + handleReset: null +}); diff --git a/applications/luci-app-travelmate/luasrc/controller/travelmate.lua b/applications/luci-app-travelmate/luasrc/controller/travelmate.lua deleted file mode 100644 index fda9db16b2..0000000000 --- a/applications/luci-app-travelmate/luasrc/controller/travelmate.lua +++ /dev/null @@ -1,69 +0,0 @@ --- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -module("luci.controller.travelmate", package.seeall) - -local sys = require("luci.sys") -local util = require("luci.util") -local http = require("luci.http") -local i18n = require("luci.i18n") -local json = require("luci.jsonc") -local uci = require("luci.model.uci").cursor() - -function index() - if not nixio.fs.access("/etc/config/travelmate") then - return - end - - local e = entry({"admin", "services", "travelmate"}, firstchild(), _("Travelmate"), 40) - e.dependent = false - e.acl_depends = { "luci-app-travelmate" } - - entry({"admin", "services", "travelmate", "tab_from_cbi"}, cbi("travelmate/overview_tab", {hideresetbtn=true, hidesavebtn=true}), _("Overview"), 10).leaf = true - entry({"admin", "services", "travelmate", "stations"}, template("travelmate/stations"), _("Wireless Stations"), 20).leaf = true - entry({"admin", "services", "travelmate", "log"}, template("travelmate/logread"), _("View Logfile"), 30).leaf = true - entry({"admin", "services", "travelmate", "advanced"}, firstchild(), _("Advanced"), 100) - entry({"admin", "services", "travelmate", "advanced", "configuration"}, form("travelmate/configuration_tab"), _("Edit Travelmate Configuration"), 110).leaf = true - entry({"admin", "services", "travelmate", "advanced", "cfg_wireless"}, form("travelmate/cfg_wireless_tab"), _("Edit Wireless Configuration"), 120).leaf = true - entry({"admin", "services", "travelmate", "advanced", "cfg_network"}, form("travelmate/cfg_network_tab"), _("Edit Network Configuration"), 130).leaf = true - entry({"admin", "services", "travelmate", "advanced", "cfg_firewall"}, form("travelmate/cfg_firewall_tab"), _("Edit Firewall Configuration"), 140).leaf = true - - entry({"admin", "services", "travelmate", "logread"}, call("logread"), nil).leaf = true - entry({"admin", "services", "travelmate", "status"}, call("status_update"), nil).leaf = true - entry({"admin", "services", "travelmate", "action"}, call("trm_action"), nil).leaf = true - entry({"admin", "services", "travelmate", "wifiscan"}, template("travelmate/wifi_scan")).leaf = true - entry({"admin", "services", "travelmate", "wifiadd"}, form("travelmate/wifi_add", {hideresetbtn=true, hidesavebtn=true})).leaf = true - entry({"admin", "services", "travelmate", "wifiedit"}, form("travelmate/wifi_edit", {hideresetbtn=true, hidesavebtn=true})).leaf = true - entry({"admin", "services", "travelmate", "wifidelete"}, form("travelmate/wifi_delete", {hideresetbtn=true, hidesavebtn=true})).leaf = true - entry({"admin", "services", "travelmate", "wifiorder"}, form("travelmate/wifi_order", {hideresetbtn=true, hidesavebtn=true})).leaf = true -end - -function trm_action(name) - if name == "do_restart" then - luci.sys.call("/etc/init.d/travelmate restart >/dev/null 2>&1") - end - luci.http.prepare_content("text/plain") - luci.http.write("0") -end - -function status_update() - local rt_file - local content - - rt_file = uci:get("travelmate", "global", "trm_rtfile") or "/tmp/trm_runtime.json" - - if nixio.fs.access(rt_file) then - content = json.parse(nixio.fs.readfile(rt_file) or "") - http.prepare_content("application/json") - http.write_json(content) - end -end - -function logread() - local content = util.trim(util.exec("logread -e 'travelmate-'")) or "" - - if content == "" then - content = "No travelmate related logs yet!" - end - http.write(content) -end diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua deleted file mode 100644 index 8597912b20..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua +++ /dev/null @@ -1,41 +0,0 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local util = require("luci.util") -local input = "/etc/config/firewall" - -if not fs.access(input) then - m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) - return m -end - -m = SimpleForm("input", nil) -m:append(Template("travelmate/travelmate_css")) -m.submit = translate("Save") -m.reset = false - -s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the main firewall configuration file (/etc/config/firewall).")) - -f = s:option(TextValue, "data") -f.rows = 20 -f.rmempty = true - -function f.cfgvalue() - return fs.readfile(input) or "" -end - -function f.write(self, section, data) - return fs.writefile(input, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") -end - -function f.remove(self, section, value) - return fs.writefile(input, "") -end - -function s.handle(self, state, data) - return true -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua deleted file mode 100644 index 36a32aefe8..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua +++ /dev/null @@ -1,41 +0,0 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local util = require("luci.util") -local input = "/etc/config/network" - -if not fs.access(input) then - m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) - return m -end - -m = SimpleForm("input", nil) -m:append(Template("travelmate/travelmate_css")) -m.submit = translate("Save") -m.reset = false - -s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the main network configuration file (/etc/config/network).")) - -f = s:option(TextValue, "data") -f.rows = 20 -f.rmempty = true - -function f.cfgvalue() - return fs.readfile(input) or "" -end - -function f.write(self, section, data) - return fs.writefile(input, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") -end - -function f.remove(self, section, value) - return fs.writefile(input, "") -end - -function s.handle(self, state, data) - return true -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua deleted file mode 100644 index bb6205b9b3..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua +++ /dev/null @@ -1,41 +0,0 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local util = require("luci.util") -local input = "/etc/config/wireless" - -if not fs.access(input) then - m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) - return m -end - -m = SimpleForm("input", nil) -m:append(Template("travelmate/travelmate_css")) -m.submit = translate("Save") -m.reset = false - -s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the main wireless configuration file (/etc/config/wireless).")) - -f = s:option(TextValue, "data") -f.rows = 20 -f.rmempty = true - -function f.cfgvalue() - return fs.readfile(input) or "" -end - -function f.write(self, section, data) - return fs.writefile(input, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") -end - -function f.remove(self, section, value) - return fs.writefile(input, "") -end - -function s.handle(self, state, data) - return true -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua deleted file mode 100644 index c9cc587edd..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua +++ /dev/null @@ -1,43 +0,0 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local util = require("luci.util") -local input = "/etc/config/travelmate" - -if not fs.access(input) then - m = SimpleForm("error", nil, translate("Input file not found, please check your configuration.")) - m.reset = false - m.submit = false - return m -end - -m = SimpleForm("input", nil) -m:append(Template("travelmate/travelmate_css")) -m.submit = translate("Save") -m.reset = false - -s = m:section(SimpleSection, nil, - translate("This form allows you to modify the content of the main travelmate configuration file (/etc/config/travelmate).")) - -f = s:option(TextValue, "data") -f.rows = 20 -f.rmempty = true - -function f.cfgvalue() - return fs.readfile(input) or "" -end - -function f.write(self, section, data) - return fs.writefile(input, "\n" .. util.trim(data:gsub("\r\n", "\n")) .. "\n") -end - -function f.remove(self, section, value) - return fs.writefile(input, "") -end - -function s.handle(self, state, data) - return true -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua deleted file mode 100644 index cc38bd97e1..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua +++ /dev/null @@ -1,153 +0,0 @@ --- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local uci = require("luci.model.uci").cursor() -local util = require("luci.util") -local nw = require("luci.model.network").init() -local fw = require("luci.model.firewall").init() -local dump = util.ubus("network.interface", "dump", {}) -local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan" -local uplink = uci:get("network", trmiface) or "" - -m = Map("travelmate", translate("Travelmate"), - translate("Configuration of the travelmate package to to enable travel router functionality. ") - .. translatef("For further information " - .. "" - .. "see online documentation", "https://github.com/openwrt/packages/blob/master/net/travelmate/files/README.md")) -m:chain("network") -m:chain("firewall") - --- Interface Wizard - -if uplink == "" then - ds = m:section(NamedSection, "global", "travelmate", translate("Interface Wizard")) - o = ds:option(Value, "trm_iface", translate("Create Uplink interface"), - translate("Create a new wireless wan uplink interface, configure it to use dhcp and ") - .. translate("add it to the wan zone of the firewall. ") - .. translate("This step has only to be done once.")) - o.datatype = "and(uciname,rangelength(3,15))" - o.default = trmiface - o.rmempty = false - - function o.validate(self, value) - if value then - local nwnet = nw:get_network(value) - local zone = fw:get_zone("wan") - local fwnet = fw:get_zone_by_network(value) - if not nwnet then - nwnet = nw:add_network(value, { proto = "dhcp" }) - end - if zone and not fwnet then - fwnet = zone:add_network(value) - end - end - return value - end - return m -end - --- Main travelmate options - -s = m:section(NamedSection, "global", "travelmate") - -o1 = s:option(Flag, "trm_enabled", translate("Enable Travelmate")) -o1.default = o1.disabled -o1.rmempty = false - -o2 = s:option(Flag, "trm_captive", translate("Captive Portal Detection"), - translate("Check the internet availability, log captive portal redirections and keep the uplink connection 'alive'.")) -o2.default = o2.enabled -o2.rmempty = false - -o3 = s:option(Flag, "trm_netcheck", translate("Net Error Check"), - translate("Treat missing internet availability as an error.")) -o3:depends("trm_captive", 1) -o3.default = o3.disabled -o3.rmempty = false - -o4 = s:option(Flag, "trm_proactive", translate("ProActive Uplink Switch"), - translate("Proactively scan and switch to a higher prioritized uplink, despite of an already existing connection.")) -o4.default = o4.enabled -o4.rmempty = false - -o5 = s:option(Flag, "trm_autoadd", translate("Add Open Uplinks"), - translate("Automatically add open uplinks like hotel captive portals to your wireless config.")) -o5.default = o5.disabled -o5.rmempty = false - -o6 = s:option(ListValue, "trm_iface", translate("Uplink / Trigger interface"), - translate("Name of the used uplink interface.")) -if dump then - local i, v - for i, v in ipairs(dump.interface) do - if v.interface ~= "loopback" and v.interface ~= "lan" then - local device = v.l3_device or v.device or "-" - o6:value(v.interface, v.interface.. " (" ..device.. ")") - end - end -end -o6.default = trmiface -o6.rmempty = false - --- Runtime information - -ds = s:option(DummyValue, "_dummy") -ds.template = "travelmate/runtime" - --- Extra options - -e = m:section(NamedSection, "global", "travelmate", translate("Extra Options"), -translate("Options for further tweaking in case the defaults are not suitable for you.")) - -e1 = e:option(Flag, "trm_debug", translate("Enable Verbose Debug Logging")) -e1.default = e1.disabled -e1.rmempty = false - -e2 = e:option(Value, "trm_radio", translate("Radio Selection / Order"), - translate("Restrict travelmate to a single radio (e.g. 'radio1') or change the overall scanning order (e.g. 'radio1 radio2 radio0').")) -e2.rmempty = true - -e3 = e:option(Value, "trm_listexpiry", translate("List Auto Expiry"), - translate("Automatically resets the 'Faulty Stations' list after n minutes. Default is '0' which means no expiry.")) -e3.datatype = "range(0,300)" -e3.default = 0 -e3.rmempty = false - -e4 = e:option(Value, "trm_triggerdelay", translate("Trigger Delay"), - translate("Additional trigger delay in seconds before travelmate processing begins.")) -e4.datatype = "range(1,60)" -e4.default = 2 -e4.rmempty = false - -e5 = e:option(Value, "trm_maxretry", translate("Connection Limit"), - translate("Retry limit to connect to an uplink.")) -e5.default = 5 -e5.datatype = "range(1,10)" -e5.rmempty = false - -e6 = e:option(Value, "trm_minquality", translate("Signal Quality Threshold"), - translate("Minimum signal quality threshold as percent for conditional uplink (dis-) connections.")) -e6.default = 35 -e6.datatype = "range(20,80)" -e6.rmempty = false - -e7 = e:option(Value, "trm_maxwait", translate("Interface Timeout"), - translate("How long should travelmate wait for a successful wlan uplink connection.")) -e7.default = 30 -e7.datatype = "range(20,40)" -e7.rmempty = false - -e8 = e:option(Value, "trm_timeout", translate("Overall Timeout"), - translate("Overall retry timeout in seconds.")) -e8.default = 60 -e8.datatype = "range(30,300)" -e8.rmempty = false - -e10 = e:option(Value, "trm_scanbuffer", translate("Scan Buffer Size"), - translate("Buffer size in bytes to prepare nearby scan results.")) -e10.default = 1024 -e10.datatype = "range(512,4096)" -e10.optional = true - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua deleted file mode 100644 index 03c4f5bda2..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua +++ /dev/null @@ -1,226 +0,0 @@ --- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local uci = require("luci.model.uci").cursor() -local http = require("luci.http") -local util = require("luci.util") -local scripts = util.split(util.trim(util.exec("ls /etc/travelmate/*.login 2>/dev/null")), "\n", nil, true) or {} -local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan" -local encr_psk = {"psk", "psk2", "psk-mixed", "sae", "owe", "sae-mixed"} -local encr_wpa = {"wpa", "wpa2", "wpa-mixed"} - -m = SimpleForm("add", translate("Add Wireless Uplink Configuration")) -m.submit = translate("Save") -m.cancel = translate("Back to overview") -m.reset = false - -function m.on_cancel() - http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) -end - -m.hidden = { - device = http.formvalue("device"), - ssid = http.formvalue("ssid"), - bssid = http.formvalue("bssid"), - description = http.formvalue("description"), - wep = tonumber(http.formvalue("wep")) or 0, - wpa_suites = http.formvalue("wpa_suites"), - wpa_version = tonumber(http.formvalue("wpa_version")) or 0 -} - -if m.hidden.wpa_version == 4 then - if string.find(m.hidden.description, "OWE") then - m.hidden.wpa_version = 5 - end -end - -if m.hidden.ssid == "" then - wssid = m:field(Value, "ssid", translate("SSID (hidden)")) -else - wssid = m:field(Value, "ssid", translate("SSID")) -end -wssid.datatype = "rangelength(1,32)" -wssid.default = m.hidden.ssid or "" - -nobssid = m:field(Flag, "no_bssid", translate("Ignore BSSID")) -if m.hidden.ssid == "" then - nobssid.default = nobssid.disabled -else - nobssid.default = nobssid.enabled -end - -bssid = m:field(Value, "bssid", translate("BSSID"), - translatef("The BSSID information '%s' is optional and only required for hidden networks", m.hidden.bssid or "")) -bssid:depends("no_bssid", 0) -bssid.datatype = "macaddr" -bssid.default = m.hidden.bssid or "" - -if m.hidden.wep == 1 then - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("wep", "WEP") - encr:value("wep+open", "WEP Open System") - encr:value("wep+mixed", "WEP mixed") - encr:value("wep+shared", "WEP Shared Key") - encr.default = "wep+open" - - wkey = m:field(Value, "key", translate("WEP-Passphrase")) - wkey.password = true - wkey.datatype = "wepkey" -elseif m.hidden.wpa_version > 0 then - if m.hidden.wpa_suites == "802.1X" then - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("wpa", "WPA Enterprise") - encr:value("wpa-mixed", "WPA/WPA2 Enterprise mixed") - encr:value("wpa2", "WPA2 Enterprise") - encr.default = encr_wpa[m.hidden.wpa_version] or "wpa2" - - ciph = m:field(ListValue, "cipher", translate("Cipher")) - ciph:value("auto", translate("Automatic")) - ciph:value("ccmp", translate("Force CCMP (AES)")) - ciph:value("tkip", translate("Force TKIP")) - ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)")) - ciph.default = "auto" - - eaptype = m:field(ListValue, "eap_type", translate("EAP-Method")) - eaptype:value("tls", "TLS") - eaptype:value("ttls", "TTLS") - eaptype:value("peap", "PEAP") - eaptype:value("fast", "FAST") - eaptype.default = "peap" - - authentication = m:field(ListValue, "auth", translate("Authentication")) - authentication:value("PAP") - authentication:value("CHAP") - authentication:value("MSCHAP") - authentication:value("MSCHAPV2") - authentication:value("EAP-GTC") - authentication:value("EAP-MD5") - authentication:value("EAP-MSCHAPV2") - authentication:value("EAP-TLS") - authentication:value("auth=PAP") - authentication:value("auth=MSCHAPV2") - authentication.default = "EAP-MSCHAPV2" - - ident = m:field(Value, "identity", translate("Identity")) - - wkey = m:field(Value, "password", translate("Password")) - wkey.password = true - wkey.datatype = "wpakey" - - cacert = m:field(Value, "ca_cert", translate("Path to CA-Certificate")) - cacert.rmempty = true - - clientcert = m:field(Value, "client_cert", translate("Path to Client-Certificate")) - clientcert:depends("eap_type","tls") - clientcert.rmempty = true - - privkey = m:field(Value, "priv_key", translate("Path to Private Key")) - privkey:depends("eap_type","tls") - privkey.rmempty = true - - privkeypwd = m:field(Value, "priv_key_pwd", translate("Password of Private Key")) - privkeypwd:depends("eap_type","tls") - privkeypwd.datatype = "wpakey" - privkeypwd.password = true - privkeypwd.rmempty = true - else - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("psk", "WPA-PSK") - encr:value("psk2", "WPA2-PSK") - encr:value("psk-mixed", "WPA/WPA2 mixed") - encr:value("sae", "WPA3-SAE") - encr:value("owe", "OWE (open network)") - encr:value("sae-mixed", "WPA2/WPA3 mixed") - encr.default = encr_psk[m.hidden.wpa_version] or "psk2" - - ciph = m:field(ListValue, "cipher", translate("Cipher")) - ciph:value("auto", translate("Automatic")) - ciph:value("ccmp", translate("Force CCMP (AES)")) - ciph:value("tkip", translate("Force TKIP")) - ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)")) - ciph:depends("encryption", "psk") - ciph:depends("encryption", "psk2") - ciph:depends("encryption", "psk-mixed") - ciph.default = "auto" - - wkey = m:field(Value, "key", translate("WPA-Passphrase")) - wkey.password = true - wkey.datatype = "wpakey" - wkey:depends("encryption", "psk") - wkey:depends("encryption", "psk2") - wkey:depends("encryption", "psk-mixed") - wkey:depends("encryption", "sae") - wkey:depends("encryption", "sae-mixed") - end -end - -local login_section = (m.hidden.device or "") .. "_" .. (m.hidden.ssid or "") .. "_" .. (m.hidden.bssid or "") -login_section = login_section:gsub("[^%w_]", "_") -local cmd = uci:get("travelmate", login_section, "command") -local cmd_args_default = uci:get("travelmate", login_section, "command_args") -cmd_list = m:field(ListValue, "cmdlist", translate("Auto Login Script"), - translate("External script reference which will be called for automated captive portal logins.")) -cmd_args = m:field(Value, "cmdargs", translate("Optional Arguments"), - translate("Space separated list of additional arguments passed to the Auto Login Script, i.e. username and password")) -for _, z in ipairs(scripts) do - cmd_list:value(z) - cmd_args:depends("cmdlist", z) -end -cmd_list:value("none") -cmd_list.default = cmd or "none" -cmd_args.default = cmd_args_default - -function wssid.write(self, section, value) - login_section = (m.hidden.device or "") .. "_" .. (wssid:formvalue(section) or "") .. "_" .. (bssid:formvalue(section) or "") - login_section = login_section:gsub("[^%w_]", "_") - newsection = uci:section("wireless", "wifi-iface", login_section, { - mode = "sta", - network = trmiface, - device = m.hidden.device, - ssid = wssid:formvalue(section), - bssid = bssid:formvalue(section), - disabled = "1" - }) - - if encr then - if string.find(encr:formvalue(section), '^wep') then - uci:set("wireless", newsection, "encryption", encr:formvalue(section)) - uci:set("wireless", newsection, "key", wkey:formvalue(section) or "") - elseif string.find(encr:formvalue(section), '^wpa') then - uci:set("wireless", newsection, "eap_type", eaptype:formvalue(section)) - uci:set("wireless", newsection, "auth", authentication:formvalue(section)) - uci:set("wireless", newsection, "identity", ident:formvalue(section) or "") - uci:set("wireless", newsection, "password", wkey:formvalue(section) or "") - uci:set("wireless", newsection, "ca_cert", cacert:formvalue(section) or "") - uci:set("wireless", newsection, "client_cert", clientcert:formvalue(section) or "") - uci:set("wireless", newsection, "priv_key", privkey:formvalue(section) or "") - uci:set("wireless", newsection, "priv_key_pwd", privkeypwd:formvalue(section) or "") - elseif encr:formvalue(section) ~= "owe" then - uci:set("wireless", newsection, "key", wkey:formvalue(section) or "") - end - if ciph and ciph:formvalue(section) and ciph:formvalue(section) ~= "auto" then - uci:set("wireless", newsection, "encryption", encr:formvalue(section) .. "+" .. ciph:formvalue(section)) - else - uci:set("wireless", newsection, "encryption", encr:formvalue(section)) - end - else - uci:set("wireless", newsection, "encryption", "none") - end - - if not uci:get("travelmate", login_section) and cmd_list:formvalue(section) ~= "none" then - uci:set("travelmate", login_section, "login") - end - if uci:get("travelmate", login_section) then - uci:set("travelmate", login_section, "command", cmd_list:formvalue(section)) - uci:set("travelmate", login_section, "command_args", cmd_args:formvalue(section)) - uci:save("travelmate") - uci:commit("travelmate") - end - uci:save("wireless") - uci:commit("wireless") - luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>&1") - http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_delete.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_delete.lua deleted file mode 100644 index 0a7678f7ed..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_delete.lua +++ /dev/null @@ -1,14 +0,0 @@ --- Copyright 2017 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local uci = require("luci.model.uci").cursor() -local http = require("luci.http") -local cfg = http.formvalue("cfg") - -if cfg ~= nil then - uci:delete("wireless", cfg) - uci:save("wireless") - uci:commit("wireless") - luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>&1") -end -http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua deleted file mode 100644 index 066dccacfd..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua +++ /dev/null @@ -1,207 +0,0 @@ --- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local fs = require("nixio.fs") -local uci = require("luci.model.uci").cursor() -local http = require("luci.http") -local util = require("luci.util") -local scripts = util.split(util.trim(util.exec("ls /etc/travelmate/*.login 2>/dev/null")), "\n", nil, true) or {} - -m = SimpleForm("edit", translate("Edit Wireless Uplink Configuration")) -m.submit = translate("Save") -m.cancel = translate("Back to overview") -m.reset = false - -function m.on_cancel() - http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) -end - -m.hidden = { - cfg = http.formvalue("cfg") -} - -local s = uci:get_all("wireless", m.hidden.cfg) - -if s ~= nil then - wssid = m:field(Value, "ssid", translate("SSID")) - wssid.datatype = "rangelength(1,32)" - wssid.default = s.ssid or "" - - bssid = m:field(Value, "bssid", translate("BSSID")) - bssid.datatype = "macaddr" - bssid.default = s.bssid or "" - - if string.match(s.encryption, '%+') and not string.match(s.encryption, '^wep') then - s.pos = string.find(s.encryption, '%+') - s.cipher = string.sub(s.encryption, s.pos + 1) - s.encryption = string.sub(s.encryption, 0, s.pos - 1) - end - - if s.encryption and s.encryption ~= "none" then - if string.match(s.encryption, '^wep') then - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("wep", "WEP") - encr:value("wep+open", "WEP Open System") - encr:value("wep+mixed", "WEP mixed") - encr:value("wep+shared", "WEP Shared Key") - encr.default = s.encryption - - wkey = m:field(Value, "key", translate("Passphrase")) - wkey.datatype = "wepkey" - wkey.password = true - wkey.default = s.key - elseif string.match(s.encryption, '^wpa') then - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("wpa", "WPA Enterprise") - encr:value("wpa-mixed", "WPA/WPA2 Enterprise mixed") - encr:value("wpa2", "WPA2 Enterprise") - encr.default = s.encryption - - ciph = m:field(ListValue, "cipher", translate("Cipher")) - ciph:value("auto", translate("Automatic")) - ciph:value("ccmp", translate("Force CCMP (AES)")) - ciph:value("tkip", translate("Force TKIP")) - ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)")) - ciph.default = s.cipher - - eaptype = m:field(ListValue, "eap_type", translate("EAP-Method")) - eaptype:value("tls", "TLS") - eaptype:value("ttls", "TTLS") - eaptype:value("peap", "PEAP") - eaptype:value("fast", "FAST") - eaptype.default = s.eap_type or "peap" - - authentication = m:field(ListValue, "auth", translate("Authentication")) - authentication:value("PAP") - authentication:value("CHAP") - authentication:value("MSCHAP") - authentication:value("MSCHAPV2") - authentication:value("EAP-GTC") - authentication:value("EAP-MD5") - authentication:value("EAP-MSCHAPV2") - authentication:value("EAP-TLS") - authentication:value("auth=PAP") - authentication:value("auth=MSCHAPV2") - authentication.default = s.auth or "EAP-MSCHAPV2" - - ident = m:field(Value, "identity", translate("Identity")) - ident.default = s.identity or "" - - wkey = m:field(Value, "password", translate("Passphrase")) - wkey.datatype = "wpakey" - wkey.password = true - wkey.default = s.password - - cacert = m:field(Value, "ca_cert", translate("Path to CA-Certificate")) - cacert.rmempty = true - cacert.default = s.ca_cert or "" - - clientcert = m:field(Value, "client_cert", translate("Path to Client-Certificate")) - clientcert:depends("eap_type","tls") - clientcert.rmempty = true - clientcert.default = s.client_cert or "" - - privkey = m:field(Value, "priv_key", translate("Path to Private Key")) - privkey:depends("eap_type","tls") - privkey.rmempty = true - privkey.default = s.priv_key or "" - - privkeypwd = m:field(Value, "priv_key_pwd", translate("Password of Private Key")) - privkeypwd:depends("eap_type","tls") - privkeypwd.datatype = "wpakey" - privkeypwd.password = true - privkeypwd.rmempty = true - privkeypwd.default = s.priv_key_pwd or "" - else - encr = m:field(ListValue, "encryption", translate("Encryption")) - encr:value("psk", "WPA-PSK") - encr:value("psk2", "WPA2-PSK") - encr:value("psk-mixed", "WPA/WPA2 mixed") - encr:value("sae", "WPA3-SAE") - encr:value("owe", "OWE (open network)") - encr:value("sae-mixed", "WPA2/WPA3 mixed") - encr.default = s.encryption - - ciph = m:field(ListValue, "cipher", translate("Cipher")) - ciph:value("auto", translate("Automatic")) - ciph:value("ccmp", translate("Force CCMP (AES)")) - ciph:value("tkip", translate("Force TKIP")) - ciph:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)")) - ciph:depends("encryption", "psk") - ciph:depends("encryption", "psk2") - ciph:depends("encryption", "psk-mixed") - ciph.default = s.cipher or "auto" - - wkey = m:field(Value, "key", translate("Passphrase")) - wkey.datatype = "wpakey" - wkey.password = true - wkey:depends("encryption", "psk") - wkey:depends("encryption", "psk2") - wkey:depends("encryption", "psk-mixed") - wkey:depends("encryption", "sae") - wkey:depends("encryption", "sae-mixed") - wkey.default = s.key - end - end -else - m.on_cancel() -end - -local login_section = (s.device or "") .. "_" .. (s.ssid or "") .. "_" .. (s.bssid or "") -login_section = login_section:gsub("[^%w_]", "_") -local cmd = uci:get("travelmate", login_section, "command") -local cmd_args_default = uci:get("travelmate", login_section, "command_args") -cmd_list = m:field(ListValue, "cmdlist", translate("Auto Login Script"), - translate("External script reference which will be called for automated captive portal logins.")) -cmd_args = m:field(Value, "cmdargs", translate("Optional Arguments"), - translate("Space separated list of additional arguments passed to the Auto Login Script, i.e. username and password")) -for _, z in ipairs(scripts) do - cmd_list:value(z) - cmd_args:depends("cmdlist", z) -end -cmd_list:value("none") -cmd_list.default = cmd or "none" -cmd_args.default = cmd_args_default - -function wssid.write(self, section, value) - uci:set("wireless", m.hidden.cfg, "ssid", wssid:formvalue(section)) - uci:set("wireless", m.hidden.cfg, "bssid", bssid:formvalue(section)) - if encr then - if string.find(encr:formvalue(section), '^wep') then - uci:set("wireless", m.hidden.cfg, "encryption", encr:formvalue(section)) - uci:set("wireless", m.hidden.cfg, "key", wkey:formvalue(section) or "") - elseif string.find(encr:formvalue(section), '^wpa') then - uci:set("wireless", m.hidden.cfg, "eap_type", eaptype:formvalue(section)) - uci:set("wireless", m.hidden.cfg, "auth", authentication:formvalue(section)) - uci:set("wireless", m.hidden.cfg, "identity", ident:formvalue(section) or "") - uci:set("wireless", m.hidden.cfg, "password", wkey:formvalue(section) or "") - uci:set("wireless", m.hidden.cfg, "ca_cert", cacert:formvalue(section) or "") - uci:set("wireless", m.hidden.cfg, "client_cert", clientcert:formvalue(section) or "") - uci:set("wireless", m.hidden.cfg, "priv_key", privkey:formvalue(section) or "") - uci:set("wireless", m.hidden.cfg, "priv_key_pwd", privkeypwd:formvalue(section) or "") - elseif encr:formvalue(section) ~= "owe" then - uci:set("wireless", m.hidden.cfg, "key", wkey:formvalue(section) or "") - end - if ciph and ciph:formvalue(section) and ciph:formvalue(section) ~= "auto" then - uci:set("wireless", m.hidden.cfg, "encryption", encr:formvalue(section) .. "+" .. ciph:formvalue(section)) - else - uci:set("wireless", m.hidden.cfg, "encryption", encr:formvalue(section)) - end - end - - if not uci:get("travelmate", login_section) and cmd_list:formvalue(section) ~= "none" then - uci:set("travelmate", login_section, "login") - end - if uci:get("travelmate", login_section) then - uci:set("travelmate", login_section, "command", cmd_list:formvalue(section)) - uci:set("travelmate", login_section, "command_args", cmd_args:formvalue(section)) - uci:save("travelmate") - uci:commit("travelmate") - end - uci:save("wireless") - uci:commit("wireless") - luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>&1") - m.on_cancel() -end - -return m diff --git a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_order.lua b/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_order.lua deleted file mode 100644 index 6eb4c72063..0000000000 --- a/applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_order.lua +++ /dev/null @@ -1,36 +0,0 @@ --- Copyright 2017 Dirk Brenken (dev@brenken.org) --- This is free software, licensed under the Apache License, Version 2.0 - -local http = require("luci.http") -local cfg = http.formvalue("cfg") -local dir = http.formvalue("dir") -local uci = require("luci.model.uci").cursor() -local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan" - -if cfg ~= nil then - local section = "" - local idx = "" - local idx_change = "" - local changed = "" - uci:foreach("wireless", "wifi-iface", function(s) - local iface = s.network or "" - if iface == trmiface then - section = s['.name'] - if cfg == section then - idx = s['.index'] - else - idx_change = s['.index'] - end - if (dir == "up" and idx ~= "" and idx_change ~= "" and idx_change < idx) or - (dir == "down" and idx ~= "" and idx_change ~= "" and idx_change > idx) then - changed = uci:reorder("wireless", cfg, idx_change) - idx = "" - end - end - end) - if changed ~= "" then - uci:save("wireless") - uci:commit("wireless") - end -end -http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm deleted file mode 100644 index 221f915f8c..0000000000 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm +++ /dev/null @@ -1,36 +0,0 @@ -<%# -Copyright 2017-2018 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+header%> -<%+travelmate/travelmate_css%> - - - -
-
-
<%:The syslog output, pre-filtered for travelmate related messages only.%>
- -
-
- -<%+footer%> diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm deleted file mode 100644 index d8625ff301..0000000000 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm +++ /dev/null @@ -1,223 +0,0 @@ -<%# -Copyright 2017-2019 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%+travelmate/travelmate_css%> - - -

<%:Runtime Information%>

-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
- -
- - -
-
-
-
- -
- - -
-
-
- -
- -
-
-
- -
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm deleted file mode 100644 index e6d297cd93..0000000000 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm +++ /dev/null @@ -1,154 +0,0 @@ -<%# -Copyright 2017-2019 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%- - local uci = require("luci.model.uci").cursor() - local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan" --%> - -<%+header%> - - - -
-
- <%=translatef("Provides an overview of all configured uplinks for the travelmate interface (%s). You can edit, remove or re-order/prioritize existing uplinks or scan for new ones. The currently used uplink is emphasized in blue, faulty stations in red.", trmiface)%> -
- -
-
-
-
<%:Device%>
-
<%:SSID%>
-
<%:BSSID%>
-
<%:Encryption%>
-
<%:Action%>
-
- <%- uci:foreach("wireless", "wifi-iface", function(s) - local iface = s.network or "" - if iface == trmiface then - local section = s['.name'] or "" - local device = s.device or "-" - local ssid = s.ssid or "-" - local bssid = s.bssid or "-" - local encr = s.encryption or "-" - -%> -
-
<%=device%>
-
<%=ssid%>
-
<%=bssid%>
-
<%=encr%>
-
-
- - - - -
-
-
- <%- end; end) -%> -
-
-
- <%- uci:foreach("wireless", "wifi-device", function(s) - local device = s[".name"] - local hwmode = s.hwmode or "-" -%> -
- - - -
- <%- end) -%> -
-
- -<%+footer%> diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/travelmate_css.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/travelmate_css.htm deleted file mode 100644 index 36b0081865..0000000000 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/travelmate_css.htm +++ /dev/null @@ -1,94 +0,0 @@ - diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm deleted file mode 100644 index 491af1d92d..0000000000 --- a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm +++ /dev/null @@ -1,95 +0,0 @@ -<%# -Copyright 2017-2020 Dirk Brenken (dev@brenken.org) -This is free software, licensed under the Apache License, Version 2.0 --%> - -<%- - local sys = require("luci.sys") - local utl = require("luci.util") - local xml = require("luci.xml") - local dev = luci.http.formvalue("device") - local ifn = utl.trim(sys.exec("/bin/ubus -S call network.wireless status 2>/dev/null | jsonfilter -l1 -e '@." .. dev .. ".interfaces[@.config.mode=\"sta\"].ifname' 2>/dev/null")) - local iw - - if ifn ~= "" then - iw = sys.wifi.getiwinfo(ifn) - else - iw = sys.wifi.getiwinfo(dev) - end - - if not iw then - luci.http.redirect(luci.dispatcher.build_url("admin/services/travelmate/stations")) - end - - function percent_wifi_signal(info) - local qc = info.quality or 0 - local qm = info.quality_max or 0 - if info.bssid and qc > 0 and qm > 0 then - return math.floor((100 / qm) * qc) - else - return 0 - end - end --%> - -<%+header%> - -
-

<%:Wireless Scan%>

-
-
-
-
<%:Uplink SSID%>
-
<%:Uplink BSSID%>
-
<%:Encryption%>
-
<%:Signal strength%>
-
<%:Action%>
-
- <%- for i, net in ipairs(iw.scanlist or { }) do -%> -
-
- <%=net.ssid and xml.pcdata(net.ssid) or "%s" % translate("hidden")%> -
-
- <%=net.bssid and xml.pcdata(net.bssid)%> -
-
- <%=net.encryption.description%> -
-
- <%=percent_wifi_signal(net)%> % -
-
-
- - - - - - - <%- if net.encryption.wpa then -%> - - <%- for _, v in ipairs(net.encryption.auth_suites) do -%> - - <%- end -%> - <%- end -%> - -
-
-
- <%- end -%> -
-
-
-
- -
-
- - - -
-
-
- -<%+footer%> diff --git a/applications/luci-app-travelmate/po/ar/travelmate.po b/applications/luci-app-travelmate/po/ar/travelmate.po index e729f98195..63a1dd3821 100644 --- a/applications/luci-app-travelmate/po/ar/travelmate.po +++ b/applications/luci-app-travelmate/po/ar/travelmate.po @@ -11,567 +11,780 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "إجراء" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "جهاز" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "جار التحميل" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "عرض ملف السجل" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "إجراء" + +#~ msgid "Loading" +#~ msgstr "جار التحميل" + +#~ msgid "View Logfile" +#~ msgstr "عرض ملف السجل" diff --git a/applications/luci-app-travelmate/po/bg/travelmate.po b/applications/luci-app-travelmate/po/bg/travelmate.po index 51f1b05459..eba407f423 100644 --- a/applications/luci-app-travelmate/po/bg/travelmate.po +++ b/applications/luci-app-travelmate/po/bg/travelmate.po @@ -10,567 +10,771 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/bn_BD/travelmate.po b/applications/luci-app-travelmate/po/bn_BD/travelmate.po index 56c00bb4b6..0a9bd269d6 100644 --- a/applications/luci-app-travelmate/po/bn_BD/travelmate.po +++ b/applications/luci-app-travelmate/po/bn_BD/travelmate.po @@ -4,567 +4,771 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/ca/travelmate.po b/applications/luci-app-travelmate/po/ca/travelmate.po index 9edbe0a7dc..40f0f8d6df 100644 --- a/applications/luci-app-travelmate/po/ca/travelmate.po +++ b/applications/luci-app-travelmate/po/ca/travelmate.po @@ -10,575 +10,858 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Acció" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avançat" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Script d’inici de sessió automàtic" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automàtic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "Detecció de portals captius" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +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:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Límit de connexions" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Dispositiu" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Edita" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Edita la configuració del tallafoc" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Edita la configuració de la xarxa" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Edita la configuració del Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Activa el Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" -msgstr "Xifratge" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Edita" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opcions addicionals" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "Instal·leu el paquet «qrencode» per a admetre codis QR." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "Xifratge" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -"Consulteu la documentació en línia per " -"a més informació" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identitat" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "No s’ha trobat el fitxer d’entrada; reviseu la vostra configuració." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Darrera execució" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "S’està carregant" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Mou cap avall" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Mou cap amunt" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Si els valors per defecte no són adequats per a vós, modifiqueu aquestes " -"opcions." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Frase de contrasenya" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Contrasenya" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Contrasenya de la clau privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Camí cap al certificat CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Camí cap al certificat de client" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Camí cap a la clau privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Reinicia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Reinicia el Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Informació de l’entorn d’execució" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (amagat)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Desa" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "Només cal fer aquest pas una vegada." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Estat del Travelmate (qualitat)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Versió del Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Mostra el fitxer de registre" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "amagat" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" +#~ msgid "Action" +#~ msgstr "Acció" + +#~ msgid "Advanced" +#~ msgstr "Avançat" + +#~ msgid "Automatic" +#~ msgstr "Automàtic" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Edita la configuració del tallafoc" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Edita la configuració de la xarxa" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Edita la configuració del Travelmate" + +#~ msgid "Enable Travelmate" +#~ msgstr "Activa el Travelmate" + +#~ msgid "Extra Options" +#~ msgstr "Opcions addicionals" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "Instal·leu el paquet «qrencode» per a admetre codis QR." + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Consulteu la documentació en línia " +#~ "per a més informació" + +#~ msgid "Identity" +#~ msgstr "Identitat" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "No s’ha trobat el fitxer d’entrada; reviseu la vostra configuració." + +#~ msgid "Loading" +#~ msgstr "S’està carregant" + +#~ msgid "Move down" +#~ msgstr "Mou cap avall" + +#~ msgid "Move up" +#~ msgstr "Mou cap amunt" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Si els valors per defecte no són adequats per a vós, modifiqueu aquestes " +#~ "opcions." + +#~ msgid "Passphrase" +#~ msgstr "Frase de contrasenya" + +#~ msgid "Restart" +#~ msgstr "Reinicia" + +#~ msgid "Restart Travelmate" +#~ msgstr "Reinicia el Travelmate" + +#~ msgid "Runtime Information" +#~ msgstr "Informació de l’entorn d’execució" + +#~ msgid "This step has only to be done once." +#~ msgstr "Només cal fer aquest pas una vegada." + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Estat del Travelmate (qualitat)" + +#~ msgid "Travelmate Version" +#~ msgstr "Versió del Travelmate" + +#~ msgid "View Logfile" +#~ msgstr "Mostra el fitxer de registre" + +#~ msgid "hidden" +#~ msgstr "amagat" + #~ msgid "Delete" #~ msgstr "Suprimeix" diff --git a/applications/luci-app-travelmate/po/cs/travelmate.po b/applications/luci-app-travelmate/po/cs/travelmate.po index eecb099c66..b80ddf47c6 100644 --- a/applications/luci-app-travelmate/po/cs/travelmate.po +++ b/applications/luci-app-travelmate/po/cs/travelmate.po @@ -10,567 +10,837 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Akce" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Pokročilé" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automaticky" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Å ifra" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Zařízení" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Dolů" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "Metoda EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Upravit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "Metoda EAP" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Upravit" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Šifrování" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Další možnosti" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Vynutit CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Vynutit TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Vynutit TKIP a CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identita" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Vstupní soubor nebyl nalezen, zkontrolujte prosím svou konfiguraci." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Poslední spuštění" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: 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:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Načítání" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Přesunout dolů" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Přesunout nahoru" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "Volby pro další doplnění pro případ, že výchozí hodnoty nejsou vhodné." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Přehled" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Heslo privátního klíče" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Cesta k certifikátu klienta" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Cesta k privátnímu klíči" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Odstranit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Informace o běhu" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Uložit" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Skenovat" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: 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:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Prodleva spuštění" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Nahoru" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Zobrazit obsah souboru se záznamem událostí" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Akce" + +#~ msgid "Advanced" +#~ msgstr "Pokročilé" + +#~ msgid "Automatic" +#~ msgstr "Automaticky" + +#~ msgid "Cipher" +#~ msgstr "Šifra" + +#~ msgid "Down" +#~ msgstr "Dolů" + +#~ msgid "Extra Options" +#~ msgstr "Další možnosti" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Vynutit CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Vynutit TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Vynutit TKIP a CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Identita" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "Vstupní soubor nebyl nalezen, zkontrolujte prosím svou konfiguraci." + +#~ msgid "Loading" +#~ msgstr "Načítání" + +#~ msgid "Move down" +#~ msgstr "Přesunout dolů" + +#~ msgid "Move up" +#~ msgstr "Přesunout nahoru" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Volby pro další doplnění pro případ, že výchozí hodnoty nejsou vhodné." + +#~ msgid "Remove" +#~ msgstr "Odstranit" + +#~ msgid "Restart" +#~ msgstr "Restart" + +#~ msgid "Runtime Information" +#~ msgstr "Informace o běhu" + +#~ msgid "Scan" +#~ msgstr "Skenovat" + +#~ msgid "Up" +#~ msgstr "Nahoru" + +#~ msgid "View Logfile" +#~ msgstr "Zobrazit obsah souboru se záznamem událostí" diff --git a/applications/luci-app-travelmate/po/de/travelmate.po b/applications/luci-app-travelmate/po/de/travelmate.po index e0d1b502ec..68d1e863c5 100644 --- a/applications/luci-app-travelmate/po/de/travelmate.po +++ b/applications/luci-app-travelmate/po/de/travelmate.po @@ -10,575 +10,874 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "Access Point auf" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Aktion" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "Füge Offene Uplinks hinzu" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "hinzufügen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Neuen Uplink hinzufügen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Zusätzlicher Trigger Timeout in Sekunden, bevor Travelmate startet." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Auto Login Skript" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatisch" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" "Füge automatisch offene WLANs wie in Hotels der Netzwerk-Konfiguration hinzu." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Zurück zur Übersicht" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Verschlüsselungsalgorithmus" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -"Konfiguration des Travelmate Pakets, um den Router auf Reisen zu benutzen." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Gerät" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "runter" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "EAP-Methode" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Bearbeiten" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "EAP-Methode" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Bearbeiten" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Verschlüsselung" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Zusätzliche Optionen" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "Gestörte Wlan-Stationen" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES) erzwingen" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Erzwinge TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Erzwinge TKIP und CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Gewähre UCI Zugriff auf luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identität" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Eingabedatei nicht gefunden, bitte überprüfen Sie Ihre Konfiguration." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Letzter Lauf" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Lade" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Nach unten schieben" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Nach oben schieben" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Optionen für weitere Optimierungen, falls die Standardeinstellungen nicht " -"für Sie geeignet sind." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Passwort" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Passwort des privaten Schlüssels" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Pfad zu Client-Zertifikat" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Pfad zum Privaten Schlüssel" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Entfernen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Neustart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Laufzeitinformationen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Speichern" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Suche" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 +msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Verzögerung Trigger-Bedingung" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Hoch" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Protokolldatei anzeigen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "versteckt" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" +#~ msgid "AP on" +#~ msgstr "Access Point auf" + +#~ msgid "Action" +#~ msgstr "Aktion" + +#~ msgid "Add Open Uplinks" +#~ msgstr "Füge Offene Uplinks hinzu" + +#~ msgid "Add Uplink" +#~ msgstr "hinzufügen" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Neuen Uplink hinzufügen" + +#~ msgid "Advanced" +#~ msgstr "Fortgeschritten" + +#~ msgid "Automatic" +#~ msgstr "Automatisch" + +#~ msgid "Back to overview" +#~ msgstr "Zurück zur Übersicht" + +#~ msgid "Cipher" +#~ msgstr "Verschlüsselungsalgorithmus" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "Konfiguration des Travelmate Pakets, um den Router auf Reisen zu benutzen." + +#~ msgid "Down" +#~ msgstr "runter" + +#~ msgid "Extra Options" +#~ msgstr "Zusätzliche Optionen" + +#~ msgid "Faulty Stations" +#~ msgstr "Gestörte Wlan-Stationen" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "CCMP (AES) erzwingen" + +#~ msgid "Force TKIP" +#~ msgstr "Erzwinge TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Erzwinge TKIP und CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Gewähre UCI Zugriff auf luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Identität" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Eingabedatei nicht gefunden, bitte überprüfen Sie Ihre Konfiguration." + +#~ msgid "Loading" +#~ msgstr "Lade" + +#~ msgid "Move down" +#~ msgstr "Nach unten schieben" + +#~ msgid "Move up" +#~ msgstr "Nach oben schieben" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Optionen für weitere Optimierungen, falls die Standardeinstellungen nicht " +#~ "für Sie geeignet sind." + +#~ msgid "Remove" +#~ msgstr "Entfernen" + +#~ msgid "Restart" +#~ msgstr "Neustart" + +#~ msgid "Runtime Information" +#~ msgstr "Laufzeitinformationen" + +#~ msgid "Scan" +#~ msgstr "Suche" + +#~ msgid "Up" +#~ msgstr "Hoch" + +#~ msgid "View Logfile" +#~ msgstr "Protokolldatei anzeigen" + +#~ msgid "hidden" +#~ msgstr "versteckt" + #~ msgid "Delete" #~ msgstr "Löschen" diff --git a/applications/luci-app-travelmate/po/el/travelmate.po b/applications/luci-app-travelmate/po/el/travelmate.po index d4d883a459..e319e17207 100644 --- a/applications/luci-app-travelmate/po/el/travelmate.po +++ b/applications/luci-app-travelmate/po/el/travelmate.po @@ -10,567 +10,777 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "προχωρημένο" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +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:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Συσκευή" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Φόρτωση" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Advanced" +#~ msgstr "προχωρημένο" + +#~ msgid "Loading" +#~ msgstr "Φόρτωση" diff --git a/applications/luci-app-travelmate/po/en/travelmate.po b/applications/luci-app-travelmate/po/en/travelmate.po index ce7d6fda87..af60f2eaf0 100644 --- a/applications/luci-app-travelmate/po/en/travelmate.po +++ b/applications/luci-app-travelmate/po/en/travelmate.po @@ -4,567 +4,771 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/es/travelmate.po b/applications/luci-app-travelmate/po/es/travelmate.po index 84acff793d..88e5ef8f64 100644 --- a/applications/luci-app-travelmate/po/es/travelmate.po +++ b/applications/luci-app-travelmate/po/es/travelmate.po @@ -13,56 +13,53 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP en" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Acción" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "Añadir enlaces ascendentes abiertos" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "Añadir enlace" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Añadir configuración de enlace inalámbrico" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 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/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avanzado" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Script de inicio de sesión automático" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automático" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -70,134 +67,189 @@ msgstr "" "Agregue automáticamente enlaces ascendentes abiertos como portales cautivos " "de hotel a su configuración inalámbrica." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -"Restablece automáticamente la lista de 'Estaciones defectuosas' después de n " -"minutos. El valor predeterminado es '0', lo que significa que no caduca." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Volver a la visión general" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" "Tamaño del búfer en bytes para preparar resultados de escaneo cercanos." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "Detección de portal cautivo" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"Verifique la disponibilidad de Internet, registre las redirecciones del " -"portal cautivo y mantenga la conexión del enlace \"viva\"." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Cifrado" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -"Configuración del paquete travelmate para activar la funcionalidad de " -"enrutador de viaje." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Límite de conexión" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "Crear interfaz de enlace" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" msgstr "" -"Cree una nueva interfaz inalámbrica de enlace, configúrela para usar dhcp y" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Abajo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Editar la configuración del Firewall" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Editar la configuración de red" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Editar la configuración de Travelmate" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "Editar la configuración de Wi-Fi" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "Editar la configuración del enlace inalámbrico" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "Editar este enlace" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Activar Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "Activar registro de depuración detallado" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Encriptación" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -205,99 +257,82 @@ msgstr "" "Referencia de script externo que se llamará para inicios de sesión cautivos " "automatizados del portal." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opciones extra" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "Estaciones defectuosas" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "Encuentra y unirse a la red en" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "Para soporte de código QR, instale el paquete 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"Para obtener más información vea la " -"documentación en línea" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Forzar CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Forzar TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forzar TKIP y CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Conceder acceso a UCI para luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 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/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identidad" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "Ignorar BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Archivo de entrada no encontrado, por favor revise su configuración." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "Tiempo de espera de la interfaz" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "Asistente de interfaz" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Último inicio" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -msgstr "Lista de caducidad automática" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Cargando" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -305,81 +340,93 @@ msgstr "" "Umbral de calidad de señal mínimo como porcentaje para conexiones (dis-) de " "enlace condicional." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Mover hacia abajo" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Mover hacia arriba" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "Nombre de la interfaz de enlace utilizada." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "Comprobación de error neto" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -msgstr "Argumentos opcionales" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Opciones para ajustes adicionales en caso de que los valores predeterminados " -"no sean adecuados para usted." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "Tiempo de espera total" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "Tiempo de espera de reintento global en segundos." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Visión general" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Frase de acceso" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Contraseña" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Contraseña de clave privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Ruta al certificado CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Ruta al certificado del cliente" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Ruta a la clave privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "Interruptor de enlace proactivo" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -387,101 +434,99 @@ 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/luasrc/view/travelmate/stations.htm:103 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." -msgstr "" -"Proporciona una descripción general de todos los enlaces ascendentes " -"configurados para la interfaz travelmate (%s). Puede editar, eliminar o " -"reordenar/priorizar enlaces ascendentes existentes o buscar nuevos. El " -"enlace ascendente utilizado actualmente se enfatiza en azul, las estaciones " -"defectuosas en rojo." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "Selección de Radio / Orden" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Eliminar" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "Eliminar este enlace ascendente" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "Repetir escaneo" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Reiniciar Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +"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:592 +msgid "Repeat Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"Restringir Travelmate a una sola radio (por ejemplo, 'radio1') o cambie el " -"orden de exploración general (por ejemplo, 'radio1 radio2 radio0')." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "Vuelva a intentar el límite para conectarse a un enlace ." -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Información de tiempo de ejecución" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Escanear" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "Tamaño del búfer de escaneo" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "Mostrar/Ocultar códigos QR" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "Umbral de calidad de señal" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "Intensidad de señal" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -490,138 +535,553 @@ msgstr "" "de comandos de inicio de sesión automático, es decir, nombre de usuario y " "contraseña" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "ID de estación (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "Interfaz de estación" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +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:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +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:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -"La información BSSID '%s' es opcional y solo se requiere para redes ocultas" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 +#: 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 "" "La salida de syslog, prefiltrada solo para mensajes relacionados con " "travelmate." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -"Este formulario le permite modificar el contenido del archivo de " -"configuración del firewall principal (/etc/config/firewall)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -"Este formulario le permite modificar el contenido del archivo de " -"configuración de la red principal (/etc/config/network)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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 "" -"Este formulario le permite modificar el contenido del archivo de " -"configuración principal de travelmate (/etc/config/travelmate)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -"Este formulario le permite modificar el contenido del archivo de " -"configuración inalámbrica principal (/etc/config/wireless)." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "Este paso solo debe hacerse una vez." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Estado de Travelmate (Calidad)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Versión de Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "Trate la falta de disponibilidad de Internet como un error." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Retraso de disparo" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Arriba" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Interfaz de enlace / disparador" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "BSSID de enlace" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "SSID de enlace" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "Ver códigos QR del AP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Ver archivo de registro" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "Frase de contraseña WEP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" -msgstr "Capacidades WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "Frase de contraseña WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "Escanear red Wi-Fi" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +msgid "Wireless Settings" +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 msgid "Wireless Stations" msgstr "Estaciones Wi-Fi" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "añadir a la zona wan del firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP en" + +#~ msgid "Action" +#~ msgstr "Acción" + +#~ msgid "Add Open Uplinks" +#~ msgstr "Añadir enlaces ascendentes abiertos" + +#~ msgid "Add Uplink" +#~ msgstr "Añadir enlace" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Añadir configuración de enlace inalámbrico" + +#~ msgid "Advanced" +#~ msgstr "Avanzado" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "" +#~ "Restablece automáticamente la lista de 'Estaciones defectuosas' después " +#~ "de n minutos. El valor predeterminado es '0', lo que significa que no " +#~ "caduca." + +#~ msgid "Back to overview" +#~ msgstr "Volver a la visión general" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "Verifique la disponibilidad de Internet, registre las redirecciones del " +#~ "portal cautivo y mantenga la conexión del enlace \"viva\"." + +#~ msgid "Cipher" +#~ msgstr "Cifrado" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "Configuración del paquete travelmate para activar la funcionalidad de " +#~ "enrutador de viaje." + +#~ msgid "Create Uplink interface" +#~ msgstr "Crear interfaz de enlace" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "Cree una nueva interfaz inalámbrica de enlace, configúrela para usar dhcp " +#~ "y" + +#~ msgid "Down" +#~ msgstr "Abajo" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Editar la configuración del Firewall" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Editar la configuración de red" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Editar la configuración de Travelmate" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "Editar la configuración de Wi-Fi" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "Editar la configuración del enlace inalámbrico" + +#~ msgid "Edit this Uplink" +#~ msgstr "Editar este enlace" + +#~ msgid "Enable Travelmate" +#~ msgstr "Activar Travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "Activar registro de depuración detallado" + +#~ msgid "Extra Options" +#~ msgstr "Opciones extra" + +#~ msgid "Faulty Stations" +#~ msgstr "Estaciones defectuosas" + +#~ msgid "Find and join network on" +#~ msgstr "Encuentra y unirse a la red en" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "Para soporte de código QR, instale el paquete 'qrencode'!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Para obtener más información vea la " +#~ "documentación en línea" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Forzar CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Forzar TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Forzar TKIP y CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Conceder acceso a UCI para luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Identidad" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Archivo de entrada no encontrado, por favor revise su configuración." + +#~ msgid "List Auto Expiry" +#~ msgstr "Lista de caducidad automática" + +#~ msgid "Loading" +#~ msgstr "Cargando" + +#~ msgid "Move down" +#~ msgstr "Mover hacia abajo" + +#~ msgid "Move up" +#~ msgstr "Mover hacia arriba" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "Nombre de la interfaz de enlace utilizada." + +#~ msgid "Optional Arguments" +#~ msgstr "Argumentos opcionales" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Opciones para ajustes adicionales en caso de que los valores " +#~ "predeterminados no sean adecuados para usted." + +#~ msgid "Passphrase" +#~ msgstr "Frase de acceso" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, remove or re-order/prioritize existing " +#~ "uplinks or scan for new ones. The currently used uplink is emphasized in " +#~ "blue, faulty stations in red." +#~ msgstr "" +#~ "Proporciona una descripción general de todos los enlaces ascendentes " +#~ "configurados para la interfaz travelmate (%s). Puede editar, eliminar o " +#~ "reordenar/priorizar enlaces ascendentes existentes o buscar nuevos. El " +#~ "enlace ascendente utilizado actualmente se enfatiza en azul, las " +#~ "estaciones defectuosas en rojo." + +#~ msgid "Radio Selection / Order" +#~ msgstr "Selección de Radio / Orden" + +#~ msgid "Remove" +#~ msgstr "Eliminar" + +#~ msgid "Remove this Uplink" +#~ msgstr "Eliminar este enlace ascendente" + +#~ msgid "Repeat scan" +#~ msgstr "Repetir escaneo" + +#~ msgid "Restart" +#~ msgstr "Reiniciar" + +#~ msgid "Restart Travelmate" +#~ msgstr "Reiniciar Travelmate" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "Restringir Travelmate a una sola radio (por ejemplo, 'radio1') o cambie " +#~ "el orden de exploración general (por ejemplo, 'radio1 radio2 radio0')." + +#~ msgid "Runtime Information" +#~ msgstr "Información de tiempo de ejecución" + +#~ msgid "Scan" +#~ msgstr "Escanear" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "Mostrar/Ocultar códigos QR" + +#~ msgid "Signal strength" +#~ msgstr "Intensidad de señal" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "ID de estación (RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "" +#~ "La información BSSID '%s' es opcional y solo se requiere para redes " +#~ "ocultas" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "Este formulario le permite modificar el contenido del archivo de " +#~ "configuración del firewall principal (/etc/config/firewall)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "" +#~ "Este formulario le permite modificar el contenido del archivo de " +#~ "configuración de la red principal (/etc/config/network)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "Este formulario le permite modificar el contenido del archivo de " +#~ "configuración principal de travelmate (/etc/config/travelmate)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "Este formulario le permite modificar el contenido del archivo de " +#~ "configuración inalámbrica principal (/etc/config/wireless)." + +#~ msgid "This step has only to be done once." +#~ msgstr "Este paso solo debe hacerse una vez." + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Estado de Travelmate (Calidad)" + +#~ msgid "Travelmate Version" +#~ msgstr "Versión de Travelmate" + +#~ msgid "Up" +#~ msgstr "Arriba" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "Interfaz de enlace / disparador" + +#~ msgid "Uplink BSSID" +#~ msgstr "BSSID de enlace" + +#~ msgid "Uplink SSID" +#~ msgstr "SSID de enlace" + +#~ msgid "View AP QR-Codes" +#~ msgstr "Ver códigos QR del AP" + +#~ msgid "View Logfile" +#~ msgstr "Ver archivo de registro" + +#~ msgid "WEP-Passphrase" +#~ msgstr "Frase de contraseña WEP" + +#~ msgid "WPA Capabilities" +#~ msgstr "Capacidades WPA" + +#~ msgid "WPA-Passphrase" +#~ msgstr "Frase de contraseña WPA" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "añadir a la zona wan del firewall." -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "oculto" +#~ msgid "hidden" +#~ msgstr "oculto" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "con SSID" +#~ msgid "with SSID" +#~ msgstr "con SSID" #~ msgid "Delete" #~ msgstr "Eliminar" diff --git a/applications/luci-app-travelmate/po/fi/travelmate.po b/applications/luci-app-travelmate/po/fi/travelmate.po index e65aac1dc6..71fb1145fa 100644 --- a/applications/luci-app-travelmate/po/fi/travelmate.po +++ b/applications/luci-app-travelmate/po/fi/travelmate.po @@ -10,567 +10,822 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Toiminta" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Todennus" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automaattinen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Salakirjoitustapa" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Laite" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Alhaalla" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "EAP-menetelmä" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Muokkaa" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "EAP-menetelmä" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Muokkaa" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Salaus" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Pakota CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Pakota TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Pakota TKIP ja CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" -msgstr "Salli pääsy travelmaten UCI-asetuksiin" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identiteetti" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Viimeksi ajettu" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: 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:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Ladataan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Siirrä alas" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Siirrä ylös" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Salasana" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Yksityisen avaimen salasana" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Polku CA-varmenteeseen" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Polku asiakasvarmenteeseen" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Polku yksityiseen avaimeen" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Poista" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Käynnistä uudelleen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Tallenna" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Etsi" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 +msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Ylhäällä" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "piilotettu" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Toiminta" + +#~ msgid "Automatic" +#~ msgstr "Automaattinen" + +#~ msgid "Cipher" +#~ msgstr "Salakirjoitustapa" + +#~ msgid "Down" +#~ msgstr "Alhaalla" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Pakota CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Pakota TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Pakota TKIP ja CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Salli pääsy travelmaten UCI-asetuksiin" + +#~ msgid "Identity" +#~ msgstr "Identiteetti" + +#~ msgid "Loading" +#~ msgstr "Ladataan" + +#~ msgid "Move down" +#~ msgstr "Siirrä alas" + +#~ msgid "Move up" +#~ msgstr "Siirrä ylös" + +#~ msgid "Remove" +#~ msgstr "Poista" + +#~ msgid "Restart" +#~ msgstr "Käynnistä uudelleen" + +#~ msgid "Scan" +#~ msgstr "Etsi" + +#~ msgid "Up" +#~ msgstr "Ylhäällä" + +#~ msgid "hidden" +#~ msgstr "piilotettu" diff --git a/applications/luci-app-travelmate/po/fr/travelmate.po b/applications/luci-app-travelmate/po/fr/travelmate.po index 473533955e..3caca0a867 100644 --- a/applications/luci-app-travelmate/po/fr/travelmate.po +++ b/applications/luci-app-travelmate/po/fr/travelmate.po @@ -10,569 +10,842 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avancé" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatique" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Code de chiffrement" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Appareil" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "En bas" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Éditer" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Éditer" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Chiffrement" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Options supplémentaires" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Forcer CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Forcer TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forcer TKIP et CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identité" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Fichier d'entrée introuvable, veuillez vérifier votre configuration." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Dernière exécution" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Chargement" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Descendre" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Monter" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Options permettant d'apporter des modifications supplémentaires au cas où " -"les valeurs par défaut ne vous conviendraient pas." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Vue d’ensemble" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Mot de passe" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Mot de passe de la clé privée" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Chemin du certificat CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Chemin du certificat-client" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Chemin de la clé privée" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Désinstaller" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Redémarrer" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Information processus" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Enregistrer" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Scan" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 +msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Délai de déclenchement" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Haut" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Afficher le fichier de journal" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "caché" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Action" + +#~ msgid "Advanced" +#~ msgstr "Avancé" + +#~ msgid "Automatic" +#~ msgstr "Automatique" + +#~ msgid "Cipher" +#~ msgstr "Code de chiffrement" + +#~ msgid "Down" +#~ msgstr "En bas" + +#~ msgid "Extra Options" +#~ msgstr "Options supplémentaires" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Forcer CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Forcer TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Forcer TKIP et CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Identité" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Fichier d'entrée introuvable, veuillez vérifier votre configuration." + +#~ msgid "Loading" +#~ msgstr "Chargement" + +#~ msgid "Move down" +#~ msgstr "Descendre" + +#~ msgid "Move up" +#~ msgstr "Monter" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Options permettant d'apporter des modifications supplémentaires au cas où " +#~ "les valeurs par défaut ne vous conviendraient pas." + +#~ msgid "Remove" +#~ msgstr "Désinstaller" + +#~ msgid "Restart" +#~ msgstr "Redémarrer" + +#~ msgid "Runtime Information" +#~ msgstr "Information processus" + +#~ msgid "Scan" +#~ msgstr "Scan" + +#~ msgid "Up" +#~ msgstr "Haut" + +#~ msgid "View Logfile" +#~ msgstr "Afficher le fichier de journal" + +#~ msgid "hidden" +#~ msgstr "caché" diff --git a/applications/luci-app-travelmate/po/he/travelmate.po b/applications/luci-app-travelmate/po/he/travelmate.po index 821b4b370a..13d4c17f46 100644 --- a/applications/luci-app-travelmate/po/he/travelmate.po +++ b/applications/luci-app-travelmate/po/he/travelmate.po @@ -4,567 +4,771 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/hi/travelmate.po b/applications/luci-app-travelmate/po/hi/travelmate.po index 8524516d67..87fc909f3d 100644 --- a/applications/luci-app-travelmate/po/hi/travelmate.po +++ b/applications/luci-app-travelmate/po/hi/travelmate.po @@ -10,567 +10,771 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/hu/travelmate.po b/applications/luci-app-travelmate/po/hu/travelmate.po index 3d4da9b5cc..9d24bc336d 100644 --- a/applications/luci-app-travelmate/po/hu/travelmate.po +++ b/applications/luci-app-travelmate/po/hu/travelmate.po @@ -10,569 +10,838 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Művelet" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Speciális" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatikus" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Titkosító" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Eszköz" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Le" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "EAP módszer" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Szerkesztés" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "EAP módszer" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Szerkesztés" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Titkosítás" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "További beállítások" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES) kényszerítése" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "TKIP kényszerítése" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "TKIP és CCMP (AES) kényszerítése" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Személyazonosság" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "A bemeneti fájl nem található, ellenőrizze a beállítást." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Utolsó futás" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: 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:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Betöltés" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Mozgatás le" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Mozgatás fel" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Beállítások a további finomhangoláshoz abban az esetben, ha az " -"alapértelmezett értékek nem felelnek meg Önnek." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Jelszó" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Személyes kulcs jelszava" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Útvonal a CA-tanúsítványhoz" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Útvonal az ügyféltanúsítványhoz" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Útvonal a személyes kulcshoz" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Eltávolítás" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Újraindítás" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Futtatókörnyezet-információk" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Mentés" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Keresés" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: 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:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Fel" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Naplófájl megtekintése" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Művelet" + +#~ msgid "Advanced" +#~ msgstr "Speciális" + +#~ msgid "Automatic" +#~ msgstr "Automatikus" + +#~ msgid "Cipher" +#~ msgstr "Titkosító" + +#~ msgid "Down" +#~ msgstr "Le" + +#~ msgid "Extra Options" +#~ msgstr "További beállítások" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "CCMP (AES) kényszerítése" + +#~ msgid "Force TKIP" +#~ msgstr "TKIP kényszerítése" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "TKIP és CCMP (AES) kényszerítése" + +#~ msgid "Identity" +#~ msgstr "Személyazonosság" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "A bemeneti fájl nem található, ellenőrizze a beállítást." + +#~ msgid "Loading" +#~ msgstr "Betöltés" + +#~ msgid "Move down" +#~ msgstr "Mozgatás le" + +#~ msgid "Move up" +#~ msgstr "Mozgatás fel" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Beállítások a további finomhangoláshoz abban az esetben, ha az " +#~ "alapértelmezett értékek nem felelnek meg Önnek." + +#~ msgid "Remove" +#~ msgstr "Eltávolítás" + +#~ msgid "Restart" +#~ msgstr "Újraindítás" + +#~ msgid "Runtime Information" +#~ msgstr "Futtatókörnyezet-információk" + +#~ msgid "Scan" +#~ msgstr "Keresés" + +#~ msgid "Up" +#~ msgstr "Fel" + +#~ msgid "View Logfile" +#~ msgstr "Naplófájl megtekintése" diff --git a/applications/luci-app-travelmate/po/it/travelmate.po b/applications/luci-app-travelmate/po/it/travelmate.po index 5594afe6c8..e6d8c72b86 100644 --- a/applications/luci-app-travelmate/po/it/travelmate.po +++ b/applications/luci-app-travelmate/po/it/travelmate.po @@ -10,567 +10,798 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Azione" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatico" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Cifra" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "Metodo EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Modifica" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "Metodo EAP" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Modifica" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Crittografia" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Forza CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Forza TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forza TKIP e CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identità" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Caricamento" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Password" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Rimuovi" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Salva" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Azione" + +#~ msgid "Automatic" +#~ msgstr "Automatico" + +#~ msgid "Cipher" +#~ msgstr "Cifra" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Forza CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Forza TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Forza TKIP e CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Identità" + +#~ msgid "Loading" +#~ msgstr "Caricamento" + +#~ msgid "Remove" +#~ msgstr "Rimuovi" diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po index 5310c1a265..13d9a024f3 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -13,54 +13,51 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP の場所:" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "アクション" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "オープンなアップリンクの追加" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "アップリンクの追加" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "無線アップリンク追加の設定" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "詳細設定" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "認証" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "自動ログイン スクリプト" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "自動" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -68,133 +65,188 @@ msgstr "" "ホテルのキャプティブ ポータルのような、オープンなアップリンクを自動的に無線設" "定に追加します。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -"'問題のあるステーション' リストを指定された時間(分)が経過後に自動的にリセッ" -"トします。デフォルトは期限切れとしないことを意味する '0' です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "概要へ戻る" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "スキャン結果を準備するためのバッファー サイズ (byte) です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "キャプティブポータル検知" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"インターネットの利用可否を確認し、キャプティブポータル リダイレクトを記録して" -"アップリンク接続を 'alive' として保持します。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "暗号化方式" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -"トラベル ルーター機能を有効化するための、 Travelmate パッケージの設定です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "接続制限" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "アップリンク インターフェースの作成" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -"新規の無線 WAN アップリンク インターフェースを作成し、 DHCP を使用するよう構" -"成して" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "デバイス" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "下へ" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "EAP メソッド" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "編集" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "ファイアウォール設定の編集" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "ネットワーク設定の編集" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Travelmate 設定の編集" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "無線設定の編集" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "無線アップリンク設定の編集" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "このアップリンクを編集" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Travelmate の有効化" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "詳細なデバッグ ログの有効化" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "暗号化" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -202,97 +254,80 @@ msgstr "" "キャプティブ ポータルへの自動ログインのために呼び出される、外部スクリプトへの" "参照です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "拡張オプション" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "問題のあるステーション" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "ネットワークの検索と参加:" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "QR コードのサポートのために、'qrencode' をインストールしてください!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"詳細な情報は オンライン ドキュメント を" -"確認してください。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "TKIP 及びCCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "luci-app-travelmate に UCI アクセスを許可" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "Travelmate が無線アップリンクへの接続成功を待つ時間です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "識別子" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "BSSID の無視" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "入力ファイルが見つかりません。設定を確認してください。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "インターフェース タイムアウト" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "インターフェース ウィザード" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -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:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "読み込み中" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -300,79 +335,93 @@ msgstr "" "条件付きアップリンク接続(または切断)のための、シグナル品質閾値の下限(%)で" "す。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "下へ移動" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "上へ移動" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "使用されるアップリンク インターフェースの名前です。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "ネット エラーチェック" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -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/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "デフォルトの設定が適切でない場合、さらに設定するためのオプションです。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "実行間隔" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "全体的な再試行タイムアウト(秒)です。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "概要" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "パスフレーズ" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "パスワード" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "秘密鍵のパスワード" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "CA 証明書へのパス" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "クライアント証明書へのパス" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "秘密鍵へのパス" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "積極的なアップリンク切替" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -380,234 +429,634 @@ msgstr "" "既存の接続に関わらず、より優先度の高いアップリンクへの積極的なスキャンと切り" "替えを行います。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "無線の選択 / 順番" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "削除" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "このアップリンクを削除" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "再スキャン" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "再起動" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Travelmate の再起動" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"Travelmate を単一の無線(例: 'radio1')のみに制限したり、全体的なスキャンの順" -"番を変更します(例: 'radio1 radio2 radio0')。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "アップリンクへの接続を試行する回数です。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "ランタイム情報" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID(ステルス)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "スキャン" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "スキャンバッファー サイズ" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "QR コードを表示/非表示" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "シグナル品質閾値" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "信号強度" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "ステーション ID (RADIO / SSID / BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "ステーション インターフェース" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +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:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -"BSSID 情報 '%s' はオプションであり、ステルス化されたネットワークにのみ必要で" -"す。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +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 "" "このフォームには、システムログ内の Travelmate に関するメッセージのみが表示さ" "れます。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -"このフォームでは、ファイアウォール 設定ファイル (/etc/config/firewall) の内容" -"を変更することができます。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -"このフォームでは、ネットワーク 設定ファイル (/etc/config/network) の内容を変" -"更することができます。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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 "" -"このフォームでは、 Travelmate 設定ファイル (/etc/config/travelmate) の内容を" -"変更することができます。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -"このフォームでは、無線 設定ファイル (/etc/config/wireless) の内容を変更するこ" -"とができます。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "この手順は、一度だけ実行される必要があります。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Travelmate ステータス(品質)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Travelmate バージョン" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "インターネット可用性が無い場合をエラーとして扱います。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "上へ" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "アップリンク / トリガー インターフェース" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "アップリンク BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "アップリンク SSID" +#: 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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "AP QR-コードを確認" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "ログファイルの確認" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP パスフレーズ" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "WPA パスフレーズ" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "無線スキャン" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "ファイアウォールの wan ゾーンに追加します。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP の場所:" + +#~ msgid "Action" +#~ msgstr "アクション" + +#~ msgid "Add Open Uplinks" +#~ msgstr "オープンなアップリンクの追加" + +#~ msgid "Add Uplink" +#~ msgstr "アップリンクの追加" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "無線アップリンク追加の設定" + +#~ msgid "Advanced" +#~ msgstr "詳細設定" + +#~ msgid "Automatic" +#~ msgstr "自動" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "" +#~ "'問題のあるステーション' リストを指定された時間(分)が経過後に自動的にリ" +#~ "セットします。デフォルトは期限切れとしないことを意味する '0' です。" + +#~ msgid "Back to overview" +#~ msgstr "概要へ戻る" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "インターネットの利用可否を確認し、キャプティブポータル リダイレクトを記録" +#~ "してアップリンク接続を 'alive' として保持します。" + +#~ msgid "Cipher" +#~ msgstr "暗号化方式" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "トラベル ルーター機能を有効化するための、 Travelmate パッケージの設定で" +#~ "す。" + +#~ msgid "Create Uplink interface" +#~ msgstr "アップリンク インターフェースの作成" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "新規の無線 WAN アップリンク インターフェースを作成し、 DHCP を使用するよう" +#~ "構成して" + +#~ msgid "Down" +#~ msgstr "下へ" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "ファイアウォール設定の編集" + +#~ msgid "Edit Network Configuration" +#~ msgstr "ネットワーク設定の編集" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Travelmate 設定の編集" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "無線設定の編集" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "無線アップリンク設定の編集" + +#~ msgid "Edit this Uplink" +#~ msgstr "このアップリンクを編集" + +#~ msgid "Enable Travelmate" +#~ msgstr "Travelmate の有効化" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "詳細なデバッグ ログの有効化" + +#~ msgid "Extra Options" +#~ msgstr "拡張オプション" + +#~ msgid "Faulty Stations" +#~ msgstr "問題のあるステーション" + +#~ msgid "Find and join network on" +#~ msgstr "ネットワークの検索と参加:" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "" +#~ "QR コードのサポートのために、'qrencode' をインストールしてください!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "詳細な情報は オンライン ドキュメント " +#~ "を確認してください。" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "TKIP 及びCCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "luci-app-travelmate に UCI アクセスを許可" + +#~ msgid "Identity" +#~ msgstr "識別子" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "入力ファイルが見つかりません。設定を確認してください。" + +#~ msgid "List Auto Expiry" +#~ msgstr "リストの自動期限切れ" + +#~ msgid "Loading" +#~ msgstr "読み込み中" + +#~ msgid "Move down" +#~ msgstr "下へ移動" + +#~ msgid "Move up" +#~ msgstr "上へ移動" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "使用されるアップリンク インターフェースの名前です。" + +#~ msgid "Optional Arguments" +#~ msgstr "オプションの引数" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "デフォルトの設定が適切でない場合、さらに設定するためのオプションです。" + +#~ msgid "Passphrase" +#~ msgstr "パスフレーズ" + +#~ msgid "Radio Selection / Order" +#~ msgstr "無線の選択 / 順番" + +#~ msgid "Remove" +#~ msgstr "削除" + +#~ msgid "Remove this Uplink" +#~ msgstr "このアップリンクを削除" + +#~ msgid "Repeat scan" +#~ msgstr "再スキャン" + +#~ msgid "Restart" +#~ msgstr "再起動" + +#~ msgid "Restart Travelmate" +#~ msgstr "Travelmate の再起動" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "Travelmate を単一の無線(例: 'radio1')のみに制限したり、全体的なスキャン" +#~ "の順番を変更します(例: 'radio1 radio2 radio0')。" + +#~ msgid "Runtime Information" +#~ msgstr "ランタイム情報" + +#~ msgid "Scan" +#~ msgstr "スキャン" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "QR コードを表示/非表示" + +#~ msgid "Signal strength" +#~ msgstr "信号強度" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "ステーション ID (RADIO / SSID / BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "" +#~ "BSSID 情報 '%s' はオプションであり、ステルス化されたネットワークにのみ必要" +#~ "です。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "このフォームでは、ファイアウォール 設定ファイル (/etc/config/firewall) の" +#~ "内容を変更することができます。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "" +#~ "このフォームでは、ネットワーク 設定ファイル (/etc/config/network) の内容を" +#~ "変更することができます。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "このフォームでは、 Travelmate 設定ファイル (/etc/config/travelmate) の内容" +#~ "を変更することができます。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "このフォームでは、無線 設定ファイル (/etc/config/wireless) の内容を変更す" +#~ "ることができます。" + +#~ msgid "This step has only to be done once." +#~ msgstr "この手順は、一度だけ実行される必要があります。" + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Travelmate ステータス(品質)" + +#~ msgid "Travelmate Version" +#~ msgstr "Travelmate バージョン" + +#~ msgid "Up" +#~ msgstr "上へ" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "アップリンク / トリガー インターフェース" + +#~ msgid "Uplink BSSID" +#~ msgstr "アップリンク BSSID" + +#~ msgid "Uplink SSID" +#~ msgstr "アップリンク SSID" + +#~ msgid "View AP QR-Codes" +#~ msgstr "AP QR-コードを確認" + +#~ msgid "View Logfile" +#~ msgstr "ログファイルの確認" + +#~ msgid "WEP-Passphrase" +#~ msgstr "WEP パスフレーズ" + +#~ msgid "WPA-Passphrase" +#~ msgstr "WPA パスフレーズ" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "ファイアウォールの wan ゾーンに追加します。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "(ステルス)" +#~ msgid "hidden" +#~ msgstr "(ステルス)" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr ", SSID:" +#~ msgid "with SSID" +#~ msgstr ", SSID:" #~ msgid "Delete" #~ msgstr "削除" diff --git a/applications/luci-app-travelmate/po/ko/travelmate.po b/applications/luci-app-travelmate/po/ko/travelmate.po index 28d9415239..e75feddba4 100644 --- a/applications/luci-app-travelmate/po/ko/travelmate.po +++ b/applications/luci-app-travelmate/po/ko/travelmate.po @@ -10,567 +10,780 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "액션" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "로드 중" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "스캔" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "액션" + +#~ msgid "Loading" +#~ msgstr "로드 중" + +#~ msgid "Scan" +#~ msgstr "스캔" diff --git a/applications/luci-app-travelmate/po/mr/travelmate.po b/applications/luci-app-travelmate/po/mr/travelmate.po index 17141bd493..625dcab6c5 100644 --- a/applications/luci-app-travelmate/po/mr/travelmate.po +++ b/applications/luci-app-travelmate/po/mr/travelmate.po @@ -10,567 +10,774 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "डिव्हाइस" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "लोड करीत आहे" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "आढावा" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "संकेतशब्द" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Loading" +#~ msgstr "लोड करीत आहे" diff --git a/applications/luci-app-travelmate/po/ms/travelmate.po b/applications/luci-app-travelmate/po/ms/travelmate.po index ea7fcf11bc..3aa9648200 100644 --- a/applications/luci-app-travelmate/po/ms/travelmate.po +++ b/applications/luci-app-travelmate/po/ms/travelmate.po @@ -10,567 +10,777 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Tindakan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Lanjutan" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Tindakan" + +#~ msgid "Advanced" +#~ msgstr "Lanjutan" diff --git a/applications/luci-app-travelmate/po/nb_NO/travelmate.po b/applications/luci-app-travelmate/po/nb_NO/travelmate.po index b8cf432478..1d327d9703 100644 --- a/applications/luci-app-travelmate/po/nb_NO/travelmate.po +++ b/applications/luci-app-travelmate/po/nb_NO/travelmate.po @@ -10,567 +10,783 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Handling" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avansert" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Ekstra valg" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Fil ikke funnet, vennligst undersøk konfigurasjonen." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" -msgstr "Sist kjørt" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "Sist kjørt" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Handling" + +#~ msgid "Advanced" +#~ msgstr "Avansert" + +#~ msgid "Extra Options" +#~ msgstr "Ekstra valg" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "Fil ikke funnet, vennligst undersøk konfigurasjonen." diff --git a/applications/luci-app-travelmate/po/pl/travelmate.po b/applications/luci-app-travelmate/po/pl/travelmate.po index 0d0748ef2e..0a5f38af2e 100644 --- a/applications/luci-app-travelmate/po/pl/travelmate.po +++ b/applications/luci-app-travelmate/po/pl/travelmate.po @@ -11,56 +11,53 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP włączony" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Akcja" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "Dodaj otwierające łącza zwrotne" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "Dodaj łącze w górę" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Dodaj bezprzewodową konfigurację łącza" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 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/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Zaawansowane" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Automatyczny skrypt logowania" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatyczne" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -68,133 +65,189 @@ msgstr "" "Automatycznie dodawaj otwarte łącza zwrotne takie jak strony logowania w " "sieci w hotelu do swojej bezprzewodowej konfiguracji." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -"Automatycznie restartuje listę \"Wadliwych stacji\" po n minut. Domyślnie " -"wynosi \"0\" co oznacza że nigdy nie wygaśnie." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Wróć do przeglądu" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" "Rozmiar bufora w bajtach do przygotowania rezultatu skanowania okolicy." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "Wykrywanie logowania w sieci" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"Sprawdź dostępność internetu, zaloguj się w sieci i utrzymuj połączenie." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Szyfr" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -"Konfiguracja pakietu travelmate do włączenia funkcji turystycznego routera." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Limit połączenia" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "Utwórz interfejs połączenia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -"Utwórz nowy bezprzewodowy interfejs połączenia sieci rozległej, skonfiguruj " -"go do używania protokołu dynamicznego konfigurowania hostów (DHCP) i" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Urządzenie" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Dół" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "Edytuj" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Edycja konfiguracji zapory sieciowej" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Edycja konfiguracji sieci" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Edycja konfiguracji Travelmate" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "Edycja konfiguracji sieci bezprzewodowej" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "Edytuj konfigurację bezprzewodowego połączenia" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "Edytuj to połączenie" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Włącz Travelmate'a" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "Włącz pełne rejestrowanie debugowania" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Szyfrowanie" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -202,98 +255,81 @@ msgstr "" "Nawiązanie do zewnętrznego skryptu który będzie użyty do automatycznego " "logowania w sieci." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opcje dodatkowe" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "Wadliwe stacje" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "Znajdź i połącz się z siecią" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "Dla wsparcia kodów QR proszę zainstalować pakiet 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"Aby uzyskać więcej informacjizobacz " -"dokumentację online" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Wymuś CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Wymuś TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Wymuś TKIP i CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Udziel dostępu UCI do luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 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/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Tożsamość" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "Ignoruj BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Nie znaleziono pliku wejściowego, proszę sprawdzić swoją konfigurację." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "Limit czasu interfejsu" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "Kreator interfejsu" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Ostatnie uruchomienie" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -msgstr "Lista automatycznego wygaśnięcia" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Ładowanie" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -301,81 +337,93 @@ msgstr "" "Minimalny próg jakości sygnału jako wartość procentowa dla warunkowych " "(ujemnych) połączeń." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Przesuń w dół" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Przesuń w górę" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "Nazwa używanego interfejsu połączenia." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "Kontrola błędów sieci" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -msgstr "Argumenty opcjonalne" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Opcje dalszych zmian w przypadku, gdy ustawienia domyślne nie są dla ciebie " -"wystarczające." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "Ogólny limit czasu" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "Ogólny limit czasu powtarzania w sekundach." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Przegląd" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Hasło" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Hasło" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Hasło klucza prywatnego" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Ścieżka do certyfikatu klienta" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Ścieżka do Klucza Prywatnego" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "Przełącznik połączenia ProActive" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -383,100 +431,99 @@ msgstr "" "Aktywnie skanuj i przełączaj na łącze o wyższym priorytecie, pomimo już " "istniejącego połączenia." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." -msgstr "" -"Zawiera przegląd wszystkich skonfigurowanych połączeń dla interfejsu " -"travelmate (%s). Możesz edytować, usuwać lub zmieniać kolejność/priorytet " -"istniejących połączeń lub skanować w poszukiwaniu nowych. Aktualnie używane " -"połączenie jest podkreślone na niebiesko, uszkodzone na czerwono." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "Wybór radia/kolejność" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Usuń" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "Usuń to połączenie" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "Powtórz skanowanie" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Restart" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Restartuj Travelmate'a" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +"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:592 +msgid "Repeat Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"Ogranicz travelmate do pojedynczego radia (np. „radio1”) lub zmień ogólną " -"kolejność skanowania (np. „radio1 radio2 radio0”)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "Limit powtórzeń do połączenia." -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Informacja o środowisku uruchomieniowym" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (ukryty)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Skanuj" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "Rozmiar bufora skanowania" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "Pokaż/Ukryj kody QR" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "Próg jakości sygnału" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "Siła sygnału" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -484,135 +531,548 @@ msgstr "" "Rozdzielona spacjami lista dodatkowych argumentów przekazanych do skryptu " "automatycznego logowania, np. nazwa użytkownika i hasło" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "ID stacji (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "Interfejs stacji" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +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:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -"Informacje o BSSID '%s' jest opcjonalna i wymagana tylko dla ukrytych sieci" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +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 "" "Wyjście dziennika systemowego, wstępnie filtrowane aby zawierało tylko " "informacje związane z travelmate." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -"Ten formularz zezwala na modyfikację zawartości głównego pliku konfiguracji " -"zapory (etc/config/firewall)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -"Ten formularz umożliwia modyfikację zawartości pliku konfiguracji głównej " -"sieci (/etc/config/network)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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 "" -"Ten formularz umożliwia modyfikację zawartości głównego pliku konfiguracji " -"travelmate (/etc/config/travelmate)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -"Ten formularz umożliwia modyfikację zawartości głównego pliku konfiguracji " -"bezprzewodowej (/etc/config/wireless)." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "Ten krok należy wykonać tylko raz." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Status Travelmate (Jakość)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Wersja Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "Traktuj brak dostępu do internetu jako błąd." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Góra" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Interfejs Wysyłania/Wyzwalania" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "BSSID połączenia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "BSSID połączenia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "Wyświetl kody QR punktów dostępu" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Wyświetl plik dziennika" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "Hasło WEP" +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" -msgstr "Możliwości WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "Hasło WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "Bezprzewodowe skanowanie" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +msgid "Wireless Settings" +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 msgid "Wireless Stations" msgstr "Stacje bezprzewodowe" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "dodaj to do strefy WAN zapory sieciowej." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP włączony" + +#~ msgid "Action" +#~ msgstr "Akcja" + +#~ msgid "Add Open Uplinks" +#~ msgstr "Dodaj otwierające łącza zwrotne" + +#~ msgid "Add Uplink" +#~ msgstr "Dodaj łącze w górę" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Dodaj bezprzewodową konfigurację łącza" + +#~ msgid "Advanced" +#~ msgstr "Zaawansowane" + +#~ msgid "Automatic" +#~ msgstr "Automatyczne" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "" +#~ "Automatycznie restartuje listę \"Wadliwych stacji\" po n minut. Domyślnie " +#~ "wynosi \"0\" co oznacza że nigdy nie wygaśnie." + +#~ msgid "Back to overview" +#~ msgstr "Wróć do przeglądu" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "Sprawdź dostępność internetu, zaloguj się w sieci i utrzymuj połączenie." + +#~ msgid "Cipher" +#~ msgstr "Szyfr" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "Konfiguracja pakietu travelmate do włączenia funkcji turystycznego " +#~ "routera." + +#~ msgid "Create Uplink interface" +#~ msgstr "Utwórz interfejs połączenia" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "Utwórz nowy bezprzewodowy interfejs połączenia sieci rozległej, " +#~ "skonfiguruj go do używania protokołu dynamicznego konfigurowania hostów " +#~ "(DHCP) i" + +#~ msgid "Down" +#~ msgstr "Dół" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Edycja konfiguracji zapory sieciowej" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Edycja konfiguracji sieci" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Edycja konfiguracji Travelmate" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "Edycja konfiguracji sieci bezprzewodowej" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "Edytuj konfigurację bezprzewodowego połączenia" + +#~ msgid "Edit this Uplink" +#~ msgstr "Edytuj to połączenie" + +#~ msgid "Enable Travelmate" +#~ msgstr "Włącz Travelmate'a" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "Włącz pełne rejestrowanie debugowania" + +#~ msgid "Extra Options" +#~ msgstr "Opcje dodatkowe" + +#~ msgid "Faulty Stations" +#~ msgstr "Wadliwe stacje" + +#~ msgid "Find and join network on" +#~ msgstr "Znajdź i połącz się z siecią" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "Dla wsparcia kodów QR proszę zainstalować pakiet 'qrencode'!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Aby uzyskać więcej informacjizobacz " +#~ "dokumentację online" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Wymuś CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Wymuś TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Wymuś TKIP i CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Udziel dostępu UCI do luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Tożsamość" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Nie znaleziono pliku wejściowego, proszę sprawdzić swoją konfigurację." + +#~ msgid "List Auto Expiry" +#~ msgstr "Lista automatycznego wygaśnięcia" + +#~ msgid "Loading" +#~ msgstr "Ładowanie" + +#~ msgid "Move down" +#~ msgstr "Przesuń w dół" + +#~ msgid "Move up" +#~ msgstr "Przesuń w górę" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "Nazwa używanego interfejsu połączenia." + +#~ msgid "Optional Arguments" +#~ msgstr "Argumenty opcjonalne" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Opcje dalszych zmian w przypadku, gdy ustawienia domyślne nie są dla " +#~ "ciebie wystarczające." + +#~ msgid "Passphrase" +#~ msgstr "Hasło" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, remove or re-order/prioritize existing " +#~ "uplinks or scan for new ones. The currently used uplink is emphasized in " +#~ "blue, faulty stations in red." +#~ msgstr "" +#~ "Zawiera przegląd wszystkich skonfigurowanych połączeń dla interfejsu " +#~ "travelmate (%s). Możesz edytować, usuwać lub zmieniać kolejność/priorytet " +#~ "istniejących połączeń lub skanować w poszukiwaniu nowych. Aktualnie " +#~ "używane połączenie jest podkreślone na niebiesko, uszkodzone na czerwono." + +#~ msgid "Radio Selection / Order" +#~ msgstr "Wybór radia/kolejność" + +#~ msgid "Remove" +#~ msgstr "Usuń" + +#~ msgid "Remove this Uplink" +#~ msgstr "Usuń to połączenie" + +#~ msgid "Repeat scan" +#~ msgstr "Powtórz skanowanie" + +#~ msgid "Restart" +#~ msgstr "Restart" + +#~ msgid "Restart Travelmate" +#~ msgstr "Restartuj Travelmate'a" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "Ogranicz travelmate do pojedynczego radia (np. „radio1”) lub zmień ogólną " +#~ "kolejność skanowania (np. „radio1 radio2 radio0”)." + +#~ msgid "Runtime Information" +#~ msgstr "Informacja o środowisku uruchomieniowym" + +#~ msgid "Scan" +#~ msgstr "Skanuj" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "Pokaż/Ukryj kody QR" + +#~ msgid "Signal strength" +#~ msgstr "Siła sygnału" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "ID stacji (RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "" +#~ "Informacje o BSSID '%s' jest opcjonalna i wymagana tylko dla ukrytych " +#~ "sieci" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "Ten formularz zezwala na modyfikację zawartości głównego pliku " +#~ "konfiguracji zapory (etc/config/firewall)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "" +#~ "Ten formularz umożliwia modyfikację zawartości pliku konfiguracji głównej " +#~ "sieci (/etc/config/network)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "Ten formularz umożliwia modyfikację zawartości głównego pliku " +#~ "konfiguracji travelmate (/etc/config/travelmate)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "Ten formularz umożliwia modyfikację zawartości głównego pliku " +#~ "konfiguracji bezprzewodowej (/etc/config/wireless)." + +#~ msgid "This step has only to be done once." +#~ msgstr "Ten krok należy wykonać tylko raz." + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Status Travelmate (Jakość)" + +#~ msgid "Travelmate Version" +#~ msgstr "Wersja Travelmate" + +#~ msgid "Up" +#~ msgstr "Góra" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "Interfejs Wysyłania/Wyzwalania" + +#~ msgid "Uplink BSSID" +#~ msgstr "BSSID połączenia" + +#~ msgid "Uplink SSID" +#~ msgstr "BSSID połączenia" + +#~ msgid "View AP QR-Codes" +#~ msgstr "Wyświetl kody QR punktów dostępu" + +#~ msgid "View Logfile" +#~ msgstr "Wyświetl plik dziennika" + +#~ msgid "WEP-Passphrase" +#~ msgstr "Hasło WEP" + +#~ msgid "WPA Capabilities" +#~ msgstr "Możliwości WPA" + +#~ msgid "WPA-Passphrase" +#~ msgstr "Hasło WPA" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "dodaj to do strefy WAN zapory sieciowej." -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "ukryty" +#~ msgid "hidden" +#~ msgstr "ukryty" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "z SSID" +#~ msgid "with SSID" +#~ msgstr "z SSID" diff --git a/applications/luci-app-travelmate/po/pt/travelmate.po b/applications/luci-app-travelmate/po/pt/travelmate.po index fd9d83d4a3..65c36d5c43 100644 --- a/applications/luci-app-travelmate/po/pt/travelmate.po +++ b/applications/luci-app-travelmate/po/pt/travelmate.po @@ -10,54 +10,51 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "PA ligado" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Ação" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "Adicionar Uplinks Abertos" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "Adicionar Enlace para Fora" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Adicionar Configuração Sem Fio de Enlace para Fora" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 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/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avançado" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automático" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -65,134 +62,189 @@ msgstr "" "Adicionar ligações ascendentes abertas automaticamente, como portais cativos " "de hotéis, à sua configuração wireless." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -"Redefine automaticamente a lista 'Estações Defeituosas' após n minutos. O " -"valor por defeito é \"0\", o que significa que não há expiração." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Voltar para visão geral" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" "Tamanho do buffer em bytes para preparar resultados de varreduras próximas." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "Detecção de Portal de Autenticação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"Verificar a disponibilidade de internet, registrar encaminhamentos de " -"portais de autenticação e manter a conexão para fora 'viva'." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Cifra" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -"Configuração do travelmate para ativar a funcionalidade de roteador de " -"viagem." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "Criar Interface de Saída" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -"Criar uma nova interface WAN sem fio de saída, configure-a para usar DHCP e" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Aparelho" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Abaixo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Editar Configurações de Firewall" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Editar Configurações de Rede" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Editar Configurações do Travelmate" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "Editar Configurações da Rede sem fio" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "Editar Configurações da Rede sem fio de saída" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "Editar Configurações da Rede de saída" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Ativar o Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "Ativar os registros de depuração detalhados" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Encriptação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -200,100 +252,82 @@ msgstr "" "Referência de script externo que será chamado para logins automatizados de " "portal cativo." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opções Adicionais" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "Estações Falhadas" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "Procurar e conectar à rede" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "Para suporte de QR-Code, por favor instale o pacote 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"Para mais informações veja a documentação " -"externa" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Forçar CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Forçar TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forçar TKIP e CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Conceder acesso UCI ao luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 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/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identidade" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "Ignore o BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -"Ficheiro de entrada não encontrado, por favor verifique a sua configuração." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "Estouro de Tempo da Interface" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "Assistente da Interface" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -msgstr "Expiração Automática da Lista" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "A carregar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -301,81 +335,93 @@ msgstr "" "Limite percentual mínimo da qualidade do sinal para (des)conexões de enlaces " "para fora." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Mover para baixo" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Mover para cima" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "Nome do interface para o uplink de saída." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "Verificação de Erros de Rede" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -msgstr "Argumentos Opcionais" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Opções para ajustes adicionais, caso as predefinições não sejam adequadas " -"para si." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "Estouro de tempo global em segundos." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Palavra-Passe" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Palavra-passe" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Palavra-passe da Chave Privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado da AC" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "Comutador de Uplink ProActive" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -383,100 +429,99 @@ msgstr "" "Analise e mude proativamente para um uplink priorizado mais alto, apesar de " "uma conexão já existente." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." -msgstr "" -"Fornece uma visão geral de todos os uplinks configurados para a interface " -"travelmate (%s). Você pode editar, remover ou reordenar/priorizar uplinks " -"existentes, ou procurar por novos uplinks. O uplink atualmente usado é " -"enfatizado em azul, estações defeituosas em vermelho." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "Seleção / Ordem de Rádio" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Remover" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "Remover este Uplink" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "Repetir busca" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Reiniciar o Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +"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:592 +msgid "Repeat Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"Restringir o travelmate a um único rádio (por exemplo, \"rádio1\") ou " -"alterar a ordem geral de varrimento (por exemplo, \"rádio1 rádio2 rádio0\")." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "Limite de retentativa de conexão com um enlace externo." -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Informação sobre a Execução" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Procurar" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "Tamanho do Buffer de Varredura" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "Mostrar/Ocultar Códigos QR" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "For do Sinal" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -484,128 +529,544 @@ 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/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "Identificador da Estação (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "Interface da Estação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" -msgstr "O BSSID '%s' é opcional e somente necessário para redes ocultas" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." -msgstr "Mensagens do syslog relacionadas ao travelmate." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." -msgstr "Este formulário permite a modificação das configurações do firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "Este formulário permite a modificação das configurações de rede." +"The selected URL will be used for connectivity- and captive portal checks." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "Este formulário permite a modificação das configurações do travelmate." +"The selected user agent will be used for connectivity- and captive portal " +"checks." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: 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 "Mensagens do syslog relacionadas ao travelmate." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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 "" -"Este formulário permite a modificação das configurações da rede sem fio." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "Este passo precisa ser feito apenas uma vez." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Estado do Travelmate (Qualidade)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Versão do Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Atraso do Gatilho" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Acima" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Enlace externo" +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "BSSID do enlace Externo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "SSID do enlace Externo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "Ver os QR-Code do ponto de acesso" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Ver Ficheiro de Registo" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "Palavra-passe WEP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" -msgstr "Capacidades WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "Palavra-passe WPA" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +msgid "Wireless Settings" +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "adicionar à zona wan do firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "PA ligado" + +#~ msgid "Action" +#~ msgstr "Ação" + +#~ msgid "Add Open Uplinks" +#~ msgstr "Adicionar Uplinks Abertos" + +#~ msgid "Add Uplink" +#~ msgstr "Adicionar Enlace para Fora" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Adicionar Configuração Sem Fio de Enlace para Fora" + +#~ msgid "Advanced" +#~ msgstr "Avançado" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "" +#~ "Redefine automaticamente a lista 'Estações Defeituosas' após n minutos. O " +#~ "valor por defeito é \"0\", o que significa que não há expiração." + +#~ msgid "Back to overview" +#~ msgstr "Voltar para visão geral" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "Verificar a disponibilidade de internet, registrar encaminhamentos de " +#~ "portais de autenticação e manter a conexão para fora 'viva'." + +#~ msgid "Cipher" +#~ msgstr "Cifra" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "Configuração do travelmate para ativar a funcionalidade de roteador de " +#~ "viagem." + +#~ msgid "Create Uplink interface" +#~ msgstr "Criar Interface de Saída" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "Criar uma nova interface WAN sem fio de saída, configure-a para usar DHCP " +#~ "e" + +#~ msgid "Down" +#~ msgstr "Abaixo" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Editar Configurações de Firewall" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Editar Configurações de Rede" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Editar Configurações do Travelmate" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "Editar Configurações da Rede sem fio" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "Editar Configurações da Rede sem fio de saída" + +#~ msgid "Edit this Uplink" +#~ msgstr "Editar Configurações da Rede de saída" + +#~ msgid "Enable Travelmate" +#~ msgstr "Ativar o Travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "Ativar os registros de depuração detalhados" + +#~ msgid "Extra Options" +#~ msgstr "Opções Adicionais" + +#~ msgid "Faulty Stations" +#~ msgstr "Estações Falhadas" + +#~ msgid "Find and join network on" +#~ msgstr "Procurar e conectar à rede" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "Para suporte de QR-Code, por favor instale o pacote 'qrencode'!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Para mais informações veja a " +#~ "documentação externa" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Forçar CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Forçar TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Forçar TKIP e CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Conceder acesso UCI ao luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Identidade" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Ficheiro de entrada não encontrado, por favor verifique a sua " +#~ "configuração." + +#~ msgid "List Auto Expiry" +#~ msgstr "Expiração Automática da Lista" + +#~ msgid "Loading" +#~ msgstr "A carregar" + +#~ msgid "Move down" +#~ msgstr "Mover para baixo" + +#~ msgid "Move up" +#~ msgstr "Mover para cima" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "Nome do interface para o uplink de saída." + +#~ msgid "Optional Arguments" +#~ msgstr "Argumentos Opcionais" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Opções para ajustes adicionais, caso as predefinições não sejam adequadas " +#~ "para si." + +#~ msgid "Passphrase" +#~ msgstr "Palavra-Passe" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, remove or re-order/prioritize existing " +#~ "uplinks or scan for new ones. The currently used uplink is emphasized in " +#~ "blue, faulty stations in red." +#~ msgstr "" +#~ "Fornece uma visão geral de todos os uplinks configurados para a interface " +#~ "travelmate (%s). Você pode editar, remover ou reordenar/priorizar uplinks " +#~ "existentes, ou procurar por novos uplinks. O uplink atualmente usado é " +#~ "enfatizado em azul, estações defeituosas em vermelho." + +#~ msgid "Radio Selection / Order" +#~ msgstr "Seleção / Ordem de Rádio" + +#~ msgid "Remove" +#~ msgstr "Remover" + +#~ msgid "Remove this Uplink" +#~ msgstr "Remover este Uplink" + +#~ msgid "Repeat scan" +#~ msgstr "Repetir busca" + +#~ msgid "Restart" +#~ msgstr "Reiniciar" + +#~ msgid "Restart Travelmate" +#~ msgstr "Reiniciar o Travelmate" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "Restringir o travelmate a um único rádio (por exemplo, \"rádio1\") ou " +#~ "alterar a ordem geral de varrimento (por exemplo, \"rádio1 rádio2 " +#~ "rádio0\")." + +#~ msgid "Runtime Information" +#~ msgstr "Informação sobre a Execução" + +#~ msgid "Scan" +#~ msgstr "Procurar" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "Mostrar/Ocultar Códigos QR" + +#~ msgid "Signal strength" +#~ msgstr "For do Sinal" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "Identificador da Estação (RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "O BSSID '%s' é opcional e somente necessário para redes ocultas" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações do firewall." + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "Este formulário permite a modificação das configurações de rede." + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações do travelmate." + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações da rede sem fio." + +#~ msgid "This step has only to be done once." +#~ msgstr "Este passo precisa ser feito apenas uma vez." + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Estado do Travelmate (Qualidade)" + +#~ msgid "Travelmate Version" +#~ msgstr "Versão do Travelmate" + +#~ msgid "Up" +#~ msgstr "Acima" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "Enlace externo" + +#~ msgid "Uplink BSSID" +#~ msgstr "BSSID do enlace Externo" + +#~ msgid "Uplink SSID" +#~ msgstr "SSID do enlace Externo" + +#~ msgid "View AP QR-Codes" +#~ msgstr "Ver os QR-Code do ponto de acesso" + +#~ msgid "View Logfile" +#~ msgstr "Ver Ficheiro de Registo" + +#~ msgid "WEP-Passphrase" +#~ msgstr "Palavra-passe WEP" + +#~ msgid "WPA Capabilities" +#~ msgstr "Capacidades WPA" + +#~ msgid "WPA-Passphrase" +#~ msgstr "Palavra-passe WPA" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "adicionar à zona wan do firewall." -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "escondido" +#~ msgid "hidden" +#~ msgstr "escondido" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "com SSID" +#~ msgid "with SSID" +#~ msgstr "com SSID" #~ msgid "Delete" #~ msgstr "Apagar" diff --git a/applications/luci-app-travelmate/po/pt_BR/travelmate.po b/applications/luci-app-travelmate/po/pt_BR/travelmate.po index efa0d04b7f..4b467f3e8e 100644 --- a/applications/luci-app-travelmate/po/pt_BR/travelmate.po +++ b/applications/luci-app-travelmate/po/pt_BR/travelmate.po @@ -13,54 +13,51 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP Ligado" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Ação" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "Adicionar Uplinks Abertos" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "Adicionar Enlace para Fora" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Adicionar Configuração Sem Fio de Enlace para Fora" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 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/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avançado" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automático" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." @@ -68,235 +65,271 @@ msgstr "" "Adicione automaticamente uplinks abertos, como os usados em portais cativos " "de hotéis na sua configuração sem fio." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -"Redefine automaticamente a lista de 'Estações que falharam' após x minutos. " -"O valor padrão é '0', o que significa que nunca expira." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Voltar para visão geral" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" "Tamanho do buffer em bytes para preparar os resultados de varredura mais " "próximos." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "Detecção de Portal de Autenticação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"Verificar a disponibilidade de internet, registrar encaminhamentos de " -"portais de autenticação e manter a conexão para fora 'viva'." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Cifra" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -"Configuração do travelmate para habilitar a funcionalidade de roteador de " -"viagem." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "Criar Interface de Saída" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" msgstr "" -"Criar uma nova interface WAN sem fio de saída, configure-a para usar DHCP e" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Abaixo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "Editar" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Editar Configurações de Firewall" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Editar Configurações de Rede" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Editar Configurações do Travelmate" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "Editar Configurações da Rede sem fio" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "Editar Configurações da Rede sem fio de saída" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "Editar Configurações da Rede de saída" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Habilitar o Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "Habilitar os registros de depuração detalhados" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Criptografia" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 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/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opções Adicionais" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "Estações com Falhas" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "Procurar e conectar à rede" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "Para suporte a QR-Code, por favor instale o pacote 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"Para mais informações veja a documentação " -"externa" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Impor CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Impor TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Impor TKIP e CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Conceda acesso UCI ao luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 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/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identidade" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "Ignore o BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -"O arquivo de entrada não foi encontrado. Por favor, verifique a sua " -"configuração." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "Estouro de Tempo da Interface" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "Assistente da Interface" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -msgstr "Lista de Auto Expiração" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Carregando" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -304,81 +337,93 @@ msgstr "" "Limite percentual mínimo da qualidade do sinal para (des)conexões de enlaces " "para fora." -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Mover para baixo" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Mover para cima" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "Nome da interface usada para o enlace de saída." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "Verificação de Erros da Rede" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -msgstr "Argumentos Opcionais" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Opções para aprimoramentos adicionais caso as predefinições não funcionem " -"com você." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "Estouro de tempo global em segundos." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Senha" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Senha" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Senha da Chave Privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Caminho para o Certificado da AC" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "ProActive Switch de Ligação Acendente (Uplink)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -386,100 +431,99 @@ 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/luasrc/view/travelmate/stations.htm:103 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." -msgstr "" -"Fornece uma visão geral de todos os uplinks configurados para a interface " -"travelmate (%s). Você pode editar, remover ou reordenar/priorizar uplinks " -"existentes ou fazer uma varredura por novos uplinks. O uplink usado " -"atualmente está marcado em azul, as estações defeituosas em vermelho." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "Seleção de Rádio / Ordem" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Remover" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "Remover este Uplink" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "Repetir busca" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Reiniciar" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Reiniciar o Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +"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:592 +msgid "Repeat Scan" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"Restringir o travelmate em um único rádio (por exemplo, 'radio1') ou alterar " -"a ordem geral de varrimento (por exemplo, 'radio1 radio2 radio0')." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "Limite de novas tentativas de conexão com um enlace externo." -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Informação de execução" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Salvar" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Procurar" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "Tamanho do Buffer de Varredura" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "Mostrar/Ocultar QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "For do Sinal" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -487,128 +531,543 @@ 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/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "Identificador da Estação (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "Interface da Estação" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" -msgstr "O BSSID '%s' é opcional e somente necessário para redes ocultas" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." -msgstr "Mensagens do syslog relacionadas ao travelmate." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." -msgstr "Este formulário permite a modificação das configurações do firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "Este formulário permite a modificação das configurações de rede." +"The selected URL will be used for connectivity- and captive portal checks." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "Este formulário permite a modificação das configurações do travelmate." +"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 "Mensagens do syslog relacionadas ao travelmate." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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 "" -"Este formulário permite a modificação das configurações da rede sem fio." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "Este passo precisa ser feito apenas uma vez." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Estado do Travelmate (Qualidade)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Versão do Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Gatilho de Atraso" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Acima" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Enlace externo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "BSSID do enlace Externo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "SSID do enlace Externo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "Ver os QR-Code do ponto de acesso" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Visualizar o Arquivo de Registros (log)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP por Senha" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" -msgstr "Recursos do WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "WPA por Senha" +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +msgid "Wireless Settings" +msgstr "" + +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:27 msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "adicionar à zona wan do firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP Ligado" + +#~ msgid "Action" +#~ msgstr "Ação" + +#~ msgid "Add Open Uplinks" +#~ msgstr "Adicionar Uplinks Abertos" + +#~ msgid "Add Uplink" +#~ msgstr "Adicionar Enlace para Fora" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Adicionar Configuração Sem Fio de Enlace para Fora" + +#~ msgid "Advanced" +#~ msgstr "Avançado" + +#~ msgid "Automatic" +#~ msgstr "Automático" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "" +#~ "Redefine automaticamente a lista de 'Estações que falharam' após x " +#~ "minutos. O valor padrão é '0', o que significa que nunca expira." + +#~ msgid "Back to overview" +#~ msgstr "Voltar para visão geral" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "Verificar a disponibilidade de internet, registrar encaminhamentos de " +#~ "portais de autenticação e manter a conexão para fora 'viva'." + +#~ msgid "Cipher" +#~ msgstr "Cifra" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "" +#~ "Configuração do travelmate para habilitar a funcionalidade de roteador de " +#~ "viagem." + +#~ msgid "Create Uplink interface" +#~ msgstr "Criar Interface de Saída" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "Criar uma nova interface WAN sem fio de saída, configure-a para usar DHCP " +#~ "e" + +#~ msgid "Down" +#~ msgstr "Abaixo" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Editar Configurações de Firewall" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Editar Configurações de Rede" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Editar Configurações do Travelmate" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "Editar Configurações da Rede sem fio" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "Editar Configurações da Rede sem fio de saída" + +#~ msgid "Edit this Uplink" +#~ msgstr "Editar Configurações da Rede de saída" + +#~ msgid "Enable Travelmate" +#~ msgstr "Habilitar o Travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "Habilitar os registros de depuração detalhados" + +#~ msgid "Extra Options" +#~ msgstr "Opções Adicionais" + +#~ msgid "Faulty Stations" +#~ msgstr "Estações com Falhas" + +#~ msgid "Find and join network on" +#~ msgstr "Procurar e conectar à rede" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "Para suporte a QR-Code, por favor instale o pacote 'qrencode'!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Para mais informações veja a " +#~ "documentação externa" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Impor CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Impor TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Impor TKIP e CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Conceda acesso UCI ao luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Identidade" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "O arquivo de entrada não foi encontrado. Por favor, verifique a sua " +#~ "configuração." + +#~ msgid "List Auto Expiry" +#~ msgstr "Lista de Auto Expiração" + +#~ msgid "Loading" +#~ msgstr "Carregando" + +#~ msgid "Move down" +#~ msgstr "Mover para baixo" + +#~ msgid "Move up" +#~ msgstr "Mover para cima" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "Nome da interface usada para o enlace de saída." + +#~ msgid "Optional Arguments" +#~ msgstr "Argumentos Opcionais" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Opções para aprimoramentos adicionais caso as predefinições não funcionem " +#~ "com você." + +#~ msgid "Passphrase" +#~ msgstr "Senha" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, remove or re-order/prioritize existing " +#~ "uplinks or scan for new ones. The currently used uplink is emphasized in " +#~ "blue, faulty stations in red." +#~ msgstr "" +#~ "Fornece uma visão geral de todos os uplinks configurados para a interface " +#~ "travelmate (%s). Você pode editar, remover ou reordenar/priorizar uplinks " +#~ "existentes ou fazer uma varredura por novos uplinks. O uplink usado " +#~ "atualmente está marcado em azul, as estações defeituosas em vermelho." + +#~ msgid "Radio Selection / Order" +#~ msgstr "Seleção de Rádio / Ordem" + +#~ msgid "Remove" +#~ msgstr "Remover" + +#~ msgid "Remove this Uplink" +#~ msgstr "Remover este Uplink" + +#~ msgid "Repeat scan" +#~ msgstr "Repetir busca" + +#~ msgid "Restart" +#~ msgstr "Reiniciar" + +#~ msgid "Restart Travelmate" +#~ msgstr "Reiniciar o Travelmate" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "Restringir o travelmate em um único rádio (por exemplo, 'radio1') ou " +#~ "alterar a ordem geral de varrimento (por exemplo, 'radio1 radio2 radio0')." + +#~ msgid "Runtime Information" +#~ msgstr "Informação de execução" + +#~ msgid "Scan" +#~ msgstr "Procurar" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "Mostrar/Ocultar QR-Codes" + +#~ msgid "Signal strength" +#~ msgstr "For do Sinal" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "Identificador da Estação (RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "O BSSID '%s' é opcional e somente necessário para redes ocultas" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações do firewall." + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "Este formulário permite a modificação das configurações de rede." + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações do travelmate." + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "Este formulário permite a modificação das configurações da rede sem fio." + +#~ msgid "This step has only to be done once." +#~ msgstr "Este passo precisa ser feito apenas uma vez." + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Estado do Travelmate (Qualidade)" + +#~ msgid "Travelmate Version" +#~ msgstr "Versão do Travelmate" + +#~ msgid "Up" +#~ msgstr "Acima" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "Enlace externo" + +#~ msgid "Uplink BSSID" +#~ msgstr "BSSID do enlace Externo" + +#~ msgid "Uplink SSID" +#~ msgstr "SSID do enlace Externo" + +#~ msgid "View AP QR-Codes" +#~ msgstr "Ver os QR-Code do ponto de acesso" + +#~ msgid "View Logfile" +#~ msgstr "Visualizar o Arquivo de Registros (log)" + +#~ msgid "WEP-Passphrase" +#~ msgstr "WEP por Senha" + +#~ msgid "WPA Capabilities" +#~ msgstr "Recursos do WPA" + +#~ msgid "WPA-Passphrase" +#~ msgstr "WPA por Senha" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "adicionar à zona wan do firewall." -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "oculto" +#~ msgid "hidden" +#~ msgstr "oculto" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "com SSID" +#~ msgid "with SSID" +#~ msgstr "com SSID" #~ msgid "Delete" #~ msgstr "Apagar" diff --git a/applications/luci-app-travelmate/po/ro/travelmate.po b/applications/luci-app-travelmate/po/ro/travelmate.po index cce09550e1..f7cb54d414 100644 --- a/applications/luci-app-travelmate/po/ro/travelmate.po +++ b/applications/luci-app-travelmate/po/ro/travelmate.po @@ -11,567 +11,805 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Actiune" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avansat" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +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:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Oprit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Modifică" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Modifică" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Opțiuni suplimentare" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Forțează CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Forțează TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forțează TKIP si CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Fișierul de intrare nu a fost găsit, vă rugăm verificaţi configuraţia." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" -msgstr "Ultima rulare" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Încărcare" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "Ultima rulare" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Salvează" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Scanează" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 +msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Intârzierea declanșării" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Vezi fișierul log" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Actiune" + +#~ msgid "Advanced" +#~ msgstr "Avansat" + +#~ msgid "Down" +#~ msgstr "Oprit" + +#~ msgid "Extra Options" +#~ msgstr "Opțiuni suplimentare" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Forțează CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Forțează TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Forțează TKIP si CCMP (AES)" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Fișierul de intrare nu a fost găsit, vă rugăm verificaţi configuraţia." + +#~ msgid "Loading" +#~ msgstr "Încărcare" + +#~ msgid "Scan" +#~ msgstr "Scanează" + +#~ msgid "View Logfile" +#~ msgstr "Vezi fișierul log" diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index 4fccb16fc7..778b424a89 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -16,587 +16,965 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Действие" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "Подключение к сети" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "Добавить настройку внешней беспроводной сети" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Дополнительная задержка в секундах до запуска TravelMate." -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Дополнительно" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Автоматически" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "Назад к обзору" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Алгоритм шифрования" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." -msgstr "Настройка утилиты TravelMate - помощника путешественника." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "Ограничение соединений" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -"Создать новый wwan интерфейс внешней беспроводной сети, настроить его на " -"использование с DHCP
и" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Устройство" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Вниз" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "Метод EAP" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "Изменить" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "Настройка config файла firewall" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "Настройка config файла network" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "Настройка config файла Travelmate" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "Настройка config файл wireless" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "Редактировать настройки беспроводной сети" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "Редактировать настройки сети" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "Включить Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "Включить подробное ведение журнала отладки" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Шифрование" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Дополнительные настройки" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "Найти сеть для подключения используя" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" -"Для получения дополнительной информации " -"смотрите онлайн документацию" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Назначить CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Назначить TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Назначить TKIP и CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" -msgstr "Предоставить UCI доступ для luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Идентификация EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "Игнорировать BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Config файл не найден, пожалуйста, проверьте ваши настройки." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "Временная задержка интерфейса" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "Помощник настройки интерфейса" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Загрузка" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Переместить вниз" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Переместить вверх" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "Имя используемого интерфейса внешней сети." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Возможные варианты детальной настройки, если значения по умолчанию не " -"подходят для вас." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "Общее время ожидания" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Обзор" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "Парольная фраза" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Пароль к Приватному ключу" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Путь к CA-сертификату" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Путь к client-сертификату" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Путь к Приватному ключу" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Удалить" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "Повторить поиск" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Перезапустить" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Информация о состоянии" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID (скрытый)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Поиск" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "Мощность сигнала" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "ID (RADIO/SSID/BSSID) клиента" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "Интерфейс клиента" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -"Страница просмотра системного журнала, показаны только события связанные с " -"работой утилиты TravelMate." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" msgstr "" -"Страница настройки межсетевого экрана, изменение содержимого config файла " -"firewall настройки межсетевого экрана (/etc/config/firewall)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -"Страница настройки сети, изменение содержимого config файла network " -"настройки сети (/etc/config/network)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -"Страница настройки Travelmate, изменение содержимого config файла travelmate " -"настройки Travelmate (/etc/config/travelmate)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: 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 "" +"Страница просмотра системного журнала, показаны только события связанные с " +"работой утилиты TravelMate." + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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 "" -"Страница настройки беспроводных соединений, изменение содержимого config " -"файла wireless настройки беспроводных сетей (/etc/config/wireless)." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "TravelMate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Версия TravelMate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Вверх" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Включить интерфейс
внешней сети" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "BSSID внешней сети" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "SSID внешней сети" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Показать системный журнал" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "Пароль WEP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "Пароль WPA" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "Найденные точки доступа Wi-Fi" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "скрытый" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" +#~ msgid "Action" +#~ msgstr "Действие" + +#~ msgid "Add Uplink" +#~ msgstr "Подключение к сети" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "Добавить настройку внешней беспроводной сети" + +#~ msgid "Advanced" +#~ msgstr "Дополнительно" + +#~ msgid "Automatic" +#~ msgstr "Автоматически" + +#~ msgid "Back to overview" +#~ msgstr "Назад к обзору" + +#~ msgid "Cipher" +#~ msgstr "Алгоритм шифрования" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "Настройка утилиты TravelMate - помощника путешественника." + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "" +#~ "Создать новый wwan интерфейс внешней беспроводной сети, настроить его на " +#~ "использование с DHCP
и" + +#~ msgid "Down" +#~ msgstr "Вниз" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "Настройка config файла firewall" + +#~ msgid "Edit Network Configuration" +#~ msgstr "Настройка config файла network" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "Настройка config файла Travelmate" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "Настройка config файл wireless" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "Редактировать настройки беспроводной сети" + +#~ msgid "Edit this Uplink" +#~ msgstr "Редактировать настройки сети" + +#~ msgid "Enable Travelmate" +#~ msgstr "Включить Travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "Включить подробное ведение журнала отладки" + +#~ msgid "Extra Options" +#~ msgstr "Дополнительные настройки" + +#~ msgid "Find and join network on" +#~ msgstr "Найти сеть для подключения используя" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "" +#~ "Для получения дополнительной информации " +#~ "смотрите онлайн документацию" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Назначить CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Назначить TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Назначить TKIP и CCMP (AES)" + +#~ msgid "Grant UCI access for luci-app-travelmate" +#~ msgstr "Предоставить UCI доступ для luci-app-travelmate" + +#~ msgid "Identity" +#~ msgstr "Идентификация EAP" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "Config файл не найден, пожалуйста, проверьте ваши настройки." + +#~ msgid "Loading" +#~ msgstr "Загрузка" + +#~ msgid "Move down" +#~ msgstr "Переместить вниз" + +#~ msgid "Move up" +#~ msgstr "Переместить вверх" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "Имя используемого интерфейса внешней сети." + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Возможные варианты детальной настройки, если значения по умолчанию не " +#~ "подходят для вас." + +#~ msgid "Passphrase" +#~ msgstr "Парольная фраза" + +#~ msgid "Remove" +#~ msgstr "Удалить" + +#~ msgid "Repeat scan" +#~ msgstr "Повторить поиск" + +#~ msgid "Restart" +#~ msgstr "Перезапустить" + +#~ msgid "Runtime Information" +#~ msgstr "Информация о состоянии" + +#~ msgid "Scan" +#~ msgstr "Поиск" + +#~ msgid "Signal strength" +#~ msgstr "Мощность сигнала" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "ID (RADIO/SSID/BSSID) клиента" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "" +#~ "Страница настройки межсетевого экрана, изменение содержимого config файла " +#~ "firewall настройки межсетевого экрана (/etc/config/firewall)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "" +#~ "Страница настройки сети, изменение содержимого config файла network " +#~ "настройки сети (/etc/config/network)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "" +#~ "Страница настройки Travelmate, изменение содержимого config файла " +#~ "travelmate настройки Travelmate (/etc/config/travelmate)." + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "" +#~ "Страница настройки беспроводных соединений, изменение содержимого config " +#~ "файла wireless настройки беспроводных сетей (/etc/config/wireless)." + +#~ msgid "Travelmate Version" +#~ msgstr "Версия TravelMate" + +#~ msgid "Up" +#~ msgstr "Вверх" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "Включить интерфейс
внешней сети" + +#~ msgid "Uplink BSSID" +#~ msgstr "BSSID внешней сети" + +#~ msgid "Uplink SSID" +#~ msgstr "SSID внешней сети" + +#~ msgid "View Logfile" +#~ msgstr "Показать системный журнал" + +#~ msgid "WEP-Passphrase" +#~ msgstr "Пароль WEP" + +#~ msgid "WPA-Passphrase" +#~ msgstr "Пароль WPA" + +#~ msgid "hidden" +#~ msgstr "скрытый" + #~ msgid "Delete" #~ msgstr "Удалить" diff --git a/applications/luci-app-travelmate/po/sk/travelmate.po b/applications/luci-app-travelmate/po/sk/travelmate.po index 4b9ca22964..a0ddb27486 100644 --- a/applications/luci-app-travelmate/po/sk/travelmate.po +++ b/applications/luci-app-travelmate/po/sk/travelmate.po @@ -10,567 +10,795 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Akcia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Pokročilé" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +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:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Zariadenie" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "Spôsob EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Upraviť" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" -msgstr "Šifrovanie" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "Spôsob EAP" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Ďalšie možnosti" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Upraviť" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "Šifrovanie" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Vynútiť TKIP a CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identita" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Heslo súkromného kľúča" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Cesta k súkromnému kľúču" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Odstrániť" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Reštartovať" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Uložiť" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Prehľadať" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Akcia" + +#~ msgid "Advanced" +#~ msgstr "Pokročilé" + +#~ msgid "Extra Options" +#~ msgstr "Ďalšie možnosti" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Vynútiť TKIP a CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Identita" + +#~ msgid "Remove" +#~ msgstr "Odstrániť" + +#~ msgid "Restart" +#~ msgstr "Reštartovať" + +#~ msgid "Scan" +#~ msgstr "Prehľadať" diff --git a/applications/luci-app-travelmate/po/sv/travelmate.po b/applications/luci-app-travelmate/po/sv/travelmate.po index b4d08388bb..8def7d7966 100644 --- a/applications/luci-app-travelmate/po/sv/travelmate.po +++ b/applications/luci-app-travelmate/po/sv/travelmate.po @@ -10,573 +10,838 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Åtgärd" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Avancerat" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Automatisk" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Chiffer" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Enhet" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "EAP-metod" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Redigera" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "EAP-metod" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Redigera" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Kryptering" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Extra alternativ" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Tvinga CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Tvinga TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Tvinga TKIP och CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Identitet" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -"Inmatningsfilen kunde inte hittas, var vänlig kontrollera din konfiguration." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: 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:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Laddar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Flytta ner" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Flytta upp" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -"Alternativ för ytterligare finjustering om standardvärdena inte passar dig." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Översikt" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Lösenord" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Den privata nyckelns lösenord" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Genväg till klient-certifikat" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Genväg till privat nyckel" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Ta bort" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Starta om" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "Information om körtid" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Spara" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Skanna" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: 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:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Se loggfilen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" +#~ msgid "Action" +#~ msgstr "Åtgärd" + +#~ msgid "Advanced" +#~ msgstr "Avancerat" + +#~ msgid "Automatic" +#~ msgstr "Automatisk" + +#~ msgid "Cipher" +#~ msgstr "Chiffer" + +#~ msgid "Extra Options" +#~ msgstr "Extra alternativ" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Tvinga CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Tvinga TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Tvinga TKIP och CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Identitet" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "" +#~ "Inmatningsfilen kunde inte hittas, var vänlig kontrollera din " +#~ "konfiguration." + +#~ msgid "Loading" +#~ msgstr "Laddar" + +#~ msgid "Move down" +#~ msgstr "Flytta ner" + +#~ msgid "Move up" +#~ msgstr "Flytta upp" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "" +#~ "Alternativ för ytterligare finjustering om standardvärdena inte passar " +#~ "dig." + +#~ msgid "Remove" +#~ msgstr "Ta bort" + +#~ msgid "Restart" +#~ msgstr "Starta om" + +#~ msgid "Runtime Information" +#~ msgstr "Information om körtid" + +#~ msgid "Scan" +#~ msgstr "Skanna" + +#~ msgid "View Logfile" +#~ msgstr "Se loggfilen" + #~ msgid "Delete" #~ msgstr "Radera" diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index f39acf971e..953fb7a726 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -1,567 +1,771 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 -msgid "BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: 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:415 +#: 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:735 +msgid "BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/tr/travelmate.po b/applications/luci-app-travelmate/po/tr/travelmate.po index 0005531935..07a58b7302 100644 --- a/applications/luci-app-travelmate/po/tr/travelmate.po +++ b/applications/luci-app-travelmate/po/tr/travelmate.po @@ -10,567 +10,786 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP (erişim noktası) açık" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Eylem" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Gelişmiş" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "Otomatik" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:224 +msgid "Information" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +msgid "Interface Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Yükleniyor" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"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:368 +msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP (erişim noktası) açık" + +#~ msgid "Action" +#~ msgstr "Eylem" + +#~ msgid "Advanced" +#~ msgstr "Gelişmiş" + +#~ msgid "Automatic" +#~ msgstr "Otomatik" + +#~ msgid "Loading" +#~ msgstr "Yükleniyor" diff --git a/applications/luci-app-travelmate/po/uk/travelmate.po b/applications/luci-app-travelmate/po/uk/travelmate.po index 78d46c1d23..4ae8f38d28 100644 --- a/applications/luci-app-travelmate/po/uk/travelmate.po +++ b/applications/luci-app-travelmate/po/uk/travelmate.po @@ -11,570 +11,828 @@ msgstr "" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Дія" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Додатково" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "Шифр" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "Пристрій" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "Вниз" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" -msgstr "Метод EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" -msgstr "Редагувати" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" +msgstr "Метод EAP" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" +msgstr "Редагувати" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "Шифрування" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "Додаткові параметри" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Generate a random unicast MAC address for each uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "Примусово CCMP (AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "Примусово TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "Примусово TKIP та CCMP (AES)" - #: applications/luci-app-travelmate/root/usr/share/rpcd/acl.d/luci-app-travelmate.json:3 -msgid "Grant UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "Ідентифікація EAP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "Вхідний файл не знайдено, будь ласка, перевірте вашу конфігурацію." +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Завантаження" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "Вниз" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "Вгору" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "Огляд" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "Пароль закритого ключа" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "Шлях до сертифіката CA" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "Шлях до сертифіката клієнта" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "Шлях до закритого ключа" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Видалити" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "Перезавантажити" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "Сканувати" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"The selected user agent will be used for connectivity- and captive portal " +"checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: 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/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: 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:209 +msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: 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:748 +msgid "WPA Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Переглянути файл звіту" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "приховано" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" +#~ msgid "Action" +#~ msgstr "Дія" + +#~ msgid "Advanced" +#~ msgstr "Додатково" + +#~ msgid "Cipher" +#~ msgstr "Шифр" + +#~ msgid "Down" +#~ msgstr "Вниз" + +#~ msgid "Extra Options" +#~ msgstr "Додаткові параметри" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "Примусово CCMP (AES)" + +#~ msgid "Force TKIP" +#~ msgstr "Примусово TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "Примусово TKIP та CCMP (AES)" + +#~ msgid "Identity" +#~ msgstr "Ідентифікація EAP" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "Вхідний файл не знайдено, будь ласка, перевірте вашу конфігурацію." + +#~ msgid "Loading" +#~ msgstr "Завантаження" + +#~ msgid "Move down" +#~ msgstr "Вниз" + +#~ msgid "Move up" +#~ msgstr "Вгору" + +#~ msgid "Remove" +#~ msgstr "Видалити" + +#~ msgid "Restart" +#~ msgstr "Перезавантажити" + +#~ msgid "Scan" +#~ msgstr "Сканувати" + +#~ msgid "View Logfile" +#~ msgstr "Переглянути файл звіту" + +#~ msgid "hidden" +#~ msgstr "приховано" + #~ msgid "Delete" #~ msgstr "Видалити" diff --git a/applications/luci-app-travelmate/po/vi/travelmate.po b/applications/luci-app-travelmate/po/vi/travelmate.po index 8086b84794..04dd97ed05 100644 --- a/applications/luci-app-travelmate/po/vi/travelmate.po +++ b/applications/luci-app-travelmate/po/vi/travelmate.po @@ -10,567 +10,780 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "Hành động" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "Nâng cao" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 -msgid "Buffer size in bytes to prepare nearby scan results." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 -msgid "" -"Check the internet availability, log captive portal redirections and keep " -"the uplink connection 'alive'." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 +msgid "" +"Check the internet availability, handle captive portal redirections and keep " +"the uplink connection 'alive'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." +"functionality. For further information check the online documentation.
" +"Please note: On first start please call the 'Interface Wizard' " +"once, to make the necessary network- and firewall settings." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 -msgid "EAP-Method" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 -msgid "Encryption" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 -msgid "" -"External script reference which will be called for automated captive portal " -"logins." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 +msgid "EAP-Method" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 +msgid "Edit" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 +msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" -"For further information see online " -"documentation" +"External script reference which will be called for automated captive portal " +"logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." +#: 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:712 +msgid "Interface Name" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 -msgid "Last Run" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "Đang tải" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 +msgid "Last Run" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 -msgid "" -"Minimum signal quality threshold as percent for conditional uplink (dis-) " -"connections." +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 -msgid "Scan Buffer Size" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 -msgid "Signal Quality Threshold" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +msgid "Signal Quality Threshold" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." +"The selected URL will be used for connectivity- and captive portal checks." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 -msgid "Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +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/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: 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:209 +msgid "Travelmate Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" +#: 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:750 +msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" +#: 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:755 +msgid "WPA2 Ent. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: 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:745 +msgid "WPA2 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" msgstr "" + +#~ msgid "Action" +#~ msgstr "Hành động" + +#~ msgid "Advanced" +#~ msgstr "Nâng cao" + +#~ msgid "Loading" +#~ msgstr "Đang tải" diff --git a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po index 16a5d6e753..b46b3b2183 100644 --- a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po @@ -16,575 +16,1029 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.1.1-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP 开启" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "动作" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" -msgstr "添加开放的上行链路" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "添加上行连接" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "添加无线上行连接配置" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "高级" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "身份验证" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "自动登录脚本" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "自动" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "自动将开放的上行链路(例如酒店门户网络)添加到您的无线配置中。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." -msgstr "n分钟后自动重置“不良站点”列表。默认值为“ 0”,表示不会重置。" +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: 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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "返回概述" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "用于暂存附近扫描结果的缓冲区大小(单位为字节)。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "强制门户检测" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." -msgstr "检查互联网可用性,记录强制网络门户重定向,并保持上行连接为“活动”状态。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "算法" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." -msgstr "配置 travelmate 包,以启用旅行路由器功能。" +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "连接限制" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "创建上行连接界面" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" -msgstr "创建一个新的无线 wan 上行接口,将其配置为使用 dhcp 及" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "设备" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "下移" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "EAP 类型" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "编辑" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "编辑防火墙配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "编辑网络配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "编辑 Travelmate 配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "编辑无线配置" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "编辑无线上行连接配置" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "编辑此上行连接" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "启用 travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "启用详细调试日志" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "加密" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "外部脚本参考,将用于门户网络的自动登录。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "额外选项" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "不良站点" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "查找并加入网络" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "如需二维码支持,请安装“qrencode”软件包!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "有关详细信息,请查看在线文档" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "强制 CCMP(AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "强制 TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "强制 TKIP 和 CCMP(AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行连接成功最长时间。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "鉴权" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "忽略 BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "未找到输入文件,请检查您的配置。" +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "接口超时" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "接口向导" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" -msgstr "列表自动过期" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "加载中" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "最小信号质量阈值(百分比),作为(断开)连接上行的条件。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "下移" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "上移" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "要使用的上行连接接口名称。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "网络错误检查" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" -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/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "在默认设置并不适合您时的额外选项。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "总体超时" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "总体重试超时(秒)。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "概览" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "密码" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "密码" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "私钥密码" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "CA 证书路径" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "客户端证书路径" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "私钥路径" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "ProActive 上行链路切换器" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已经存在的连接,主动扫描并切换到更高优先级的上行链路。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -"概述travelmate接口(%s)的所有已配置上行链路。您可以编辑,删除或重新排序/优" -"先排序现有的上行链路或扫描新的上行链路。蓝色表示当前使用的上行链路,红色表示" -"故障站点。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "无线电选择/顺序" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "移除" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "删除此上行链路" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "重新扫描" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "重启" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "重启 Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"将 travelmate 限制在单个无线电上(例如“radio1”),或改变整个扫描顺序(例" -"如“radio1 radio2 radio0”)。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "连接到上行连接的重试限制。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "运行信息" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID(隐藏)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "扫描" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "扫描用缓冲区大小" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "显示/隐藏 二维码" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "信号质量阈值" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "信号强度" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "传递给自动登录脚本的其他可选参数的空格分隔列表,比如用户名和密码" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "站点 ID(RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "站点接口" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" -msgstr "BSSID 信息“%s”是可选的,仅对隐藏网络必需" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." -msgstr "此表单显示 syslog 输出,仅针对 travelmate 相关消息进行预过滤。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." -msgstr "此表单允许您修改主防火墙配置文件(/etc/config/firewall)的内容。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "此表单允许您修改主网络配置文件(/etc/config/network)的内容。" +"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:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "此表单允许您修改主旅行配置文件(/etc/config/travelmate)的内容。" +"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 "此表单显示 syslog 输出,仅针对 travelmate 相关消息进行预过滤。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." -msgstr "此表单允许您修改主无线配置文件(/etc/config/wireless)的内容。" +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "此步骤只需执行一次。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "旅行伴侣" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Travelmate 状态(质量)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Travelmate 版本" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "将没有可用互联网视为错误。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "触发延迟" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "上" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "上行 BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "上行 SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "查看日志文件" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP-口令" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" -msgstr "WPA功能" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "WPA-口令" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "无线扫描" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "将其添加到防火墙的 wan 区域。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP 开启" + +#~ msgid "Action" +#~ msgstr "动作" + +#~ msgid "Add Open Uplinks" +#~ msgstr "添加开放的上行链路" + +#~ msgid "Add Uplink" +#~ msgstr "添加上行连接" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "添加无线上行连接配置" + +#~ msgid "Advanced" +#~ msgstr "高级" + +#~ msgid "Automatic" +#~ msgstr "自动" + +#~ msgid "" +#~ "Automatically resets the 'Faulty Stations' list after n minutes. Default " +#~ "is '0' which means no expiry." +#~ msgstr "n分钟后自动重置“不良站点”列表。默认值为“ 0”,表示不会重置。" + +#~ msgid "Back to overview" +#~ msgstr "返回概述" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "检查互联网可用性,记录强制网络门户重定向,并保持上行连接为“活动”状态。" + +#~ msgid "Cipher" +#~ msgstr "算法" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "配置 travelmate 包,以启用旅行路由器功能。" + +#~ msgid "Create Uplink interface" +#~ msgstr "创建上行连接界面" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "创建一个新的无线 wan 上行接口,将其配置为使用 dhcp 及" + +#~ msgid "Down" +#~ msgstr "下移" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "编辑防火墙配置" + +#~ msgid "Edit Network Configuration" +#~ msgstr "编辑网络配置" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "编辑 Travelmate 配置" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "编辑无线配置" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "编辑无线上行连接配置" + +#~ msgid "Edit this Uplink" +#~ msgstr "编辑此上行连接" + +#~ msgid "Enable Travelmate" +#~ msgstr "启用 travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "启用详细调试日志" + +#~ msgid "Extra Options" +#~ msgstr "额外选项" + +#~ msgid "Faulty Stations" +#~ msgstr "不良站点" + +#~ msgid "Find and join network on" +#~ msgstr "查找并加入网络" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "如需二维码支持,请安装“qrencode”软件包!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "有关详细信息,请查看在线文档" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "强制 CCMP(AES)" + +#~ msgid "Force TKIP" +#~ msgstr "强制 TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "强制 TKIP 和 CCMP(AES)" + +#~ msgid "Identity" +#~ msgstr "鉴权" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "未找到输入文件,请检查您的配置。" + +#~ msgid "List Auto Expiry" +#~ msgstr "列表自动过期" + +#~ msgid "Loading" +#~ msgstr "加载中" + +#~ msgid "Move down" +#~ msgstr "下移" + +#~ msgid "Move up" +#~ msgstr "上移" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "要使用的上行连接接口名称。" + +#~ msgid "Optional Arguments" +#~ msgstr "可选参数" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "在默认设置并不适合您时的额外选项。" + +#~ msgid "Passphrase" +#~ msgstr "密码" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, remove or re-order/prioritize existing " +#~ "uplinks or scan for new ones. The currently used uplink is emphasized in " +#~ "blue, faulty stations in red." +#~ msgstr "" +#~ "概述travelmate接口(%s)的所有已配置上行链路。您可以编辑,删除或重新排序/" +#~ "优先排序现有的上行链路或扫描新的上行链路。蓝色表示当前使用的上行链路,红色" +#~ "表示故障站点。" + +#~ msgid "Radio Selection / Order" +#~ msgstr "无线电选择/顺序" + +#~ msgid "Remove" +#~ msgstr "移除" + +#~ msgid "Remove this Uplink" +#~ msgstr "删除此上行链路" + +#~ msgid "Repeat scan" +#~ msgstr "重新扫描" + +#~ msgid "Restart" +#~ msgstr "重启" + +#~ msgid "Restart Travelmate" +#~ msgstr "重启 Travelmate" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "将 travelmate 限制在单个无线电上(例如“radio1”),或改变整个扫描顺序(例" +#~ "如“radio1 radio2 radio0”)。" + +#~ msgid "Runtime Information" +#~ msgstr "运行信息" + +#~ msgid "Scan" +#~ msgstr "扫描" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "显示/隐藏 二维码" + +#~ msgid "Signal strength" +#~ msgstr "信号强度" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "站点 ID(RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "BSSID 信息“%s”是可选的,仅对隐藏网络必需" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "此表单允许您修改主防火墙配置文件(/etc/config/firewall)的内容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "此表单允许您修改主网络配置文件(/etc/config/network)的内容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "此表单允许您修改主旅行配置文件(/etc/config/travelmate)的内容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "此表单允许您修改主无线配置文件(/etc/config/wireless)的内容。" + +#~ msgid "This step has only to be done once." +#~ msgstr "此步骤只需执行一次。" + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Travelmate 状态(质量)" + +#~ msgid "Travelmate Version" +#~ msgstr "Travelmate 版本" + +#~ msgid "Up" +#~ msgstr "上" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "上行 / 触发接口" + +#~ msgid "Uplink BSSID" +#~ msgstr "上行 BSSID" + +#~ msgid "Uplink SSID" +#~ msgstr "上行 SSID" + +#~ msgid "View AP QR-Codes" +#~ msgstr "查看热点二维码" + +#~ msgid "View Logfile" +#~ msgstr "查看日志文件" + +#~ msgid "WEP-Passphrase" +#~ msgstr "WEP-口令" + +#~ msgid "WPA Capabilities" +#~ msgstr "WPA功能" + +#~ msgid "WPA-Passphrase" +#~ msgstr "WPA-口令" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "将其添加到防火墙的 wan 区域。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "隐藏" +#~ msgid "hidden" +#~ msgstr "隐藏" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "带 SSID" +#~ msgid "with SSID" +#~ msgstr "带 SSID" #~ msgid "Delete" #~ msgstr "删除" diff --git a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po index 68214e39fa..b437bbfa91 100644 --- a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po @@ -16,573 +16,996 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "AP on" -msgstr "AP 開啟" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -msgstr "動作" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:76 -msgid "Add Uplink" -msgstr "新增上行連線" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 -msgid "Add Wireless Uplink Configuration" -msgstr "新增無線上行連線配置" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 處理開始前的額外觸發延遲(秒)。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 -msgid "Advanced" -msgstr "進階" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:92 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:779 msgid "Authentication" msgstr "認證" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:162 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:154 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:79 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:138 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:61 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:126 -msgid "Automatic" -msgstr "自動" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +msgid "AutoAdd Open Uplinks" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:75 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +msgid "" +"Automatically (re-)enable the uplink after n minutes, e.g. after " +"failed login attempts.
The default of '0' disables this feature." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 msgid "" "Automatically add open uplinks like hotel captive portals to your wireless " "config." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 msgid "" -"Automatically resets the 'Faulty Stations' list after n minutes. Default is " -"'0' which means no expiry." +"Automatically disable the uplink after n minutes, e.g. for timed " +"connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:53 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:30 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "Automatically handle VPN (re-) connections." +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:415 +#: 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:735 msgid "BSSID" msgstr "BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:12 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:85 -msgid "Back to overview" -msgstr "返回概述" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:148 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Buffer size in bytes to prepare nearby scan results." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:58 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:362 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:782 +msgid "CHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "Captive Portal Detection" msgstr "強制門戶檢測" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +msgid "Captive Portal URL" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:572 +msgid "Channel" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:297 msgid "" -"Check the internet availability, log captive portal redirections and keep " +"Check the internet availability, handle captive portal redirections and keep " "the uplink connection 'alive'." msgstr "" -"檢查網際網路可用性,記錄強制網路門戶重定向,並保持上行連線為“活動”狀態。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:78 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:137 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:125 -msgid "Cipher" -msgstr "加密方式" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:147 msgid "" "Configuration of the travelmate package to to enable travel router " -"functionality." -msgstr "配置 travelmate 包,以啟用旅行路由器功能。" +"functionality. For further information check the online documentation.
" +"Please note: 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:437 +msgid "Connection End" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:466 +msgid "Connection End Expiry" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Connection Limit" msgstr "連線限制" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:25 -msgid "Create Uplink interface" -msgstr "建立上行連線介面" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +msgid "Connection Start" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:26 -msgid "" -"Create a new wireless wan uplink interface, configure it to use dhcp and" -msgstr "建立一個新的無線 wan 上行介面,將其配置為使用 dhcp 及" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:448 +msgid "Connection Start Expiry" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:228 +msgid "Del" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:226 +msgid "Delete this network" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:245 msgid "Device" msgstr "裝置" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Down" -msgstr "下" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:708 +msgid "Device Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:85 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:67 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:43 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:587 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:821 +msgid "Dismiss" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:215 +msgid "Drag to reorder" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "E-Mail Hook" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "E-Mail Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:365 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:785 +msgid "EAP-GTC" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:366 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:786 +msgid "EAP-MD5" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:367 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +msgid "EAP-MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:771 msgid "EAP-Method" msgstr "EAP-方法" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:788 +msgid "EAP-TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:223 msgid "Edit" msgstr "編輯" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:29 -msgid "Edit Firewall Configuration" -msgstr "編輯防火牆配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:28 -msgid "Edit Network Configuration" -msgstr "編輯網路配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:26 -msgid "Edit Travelmate Configuration" -msgstr "編輯 Travelmate 配置" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:27 -msgid "Edit Wireless Configuration" -msgstr "編輯無線配置" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 -msgid "Edit Wireless Uplink Configuration" -msgstr "編輯無線上行連線配置" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 -msgid "Edit this Uplink" -msgstr "編輯此上行連線" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:54 -msgid "Enable Travelmate" -msgstr "啟用 travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:103 -msgid "Enable Verbose Debug Logging" -msgstr "啟用詳細除錯日誌" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:60 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:128 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:42 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:54 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:116 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:44 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:221 +msgid "Edit this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +msgid "Enable the travelmate service." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:287 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:233 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:256 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:741 msgid "Encryption" msgstr "加密" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:163 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:155 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:244 +msgid "Ext. Hooks" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:485 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 -msgid "Extra Options" -msgstr "額外選項" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:128 -msgid "Faulty Stations" -msgstr "不良站點" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Find and join network on" -msgstr "查詢並加入網路" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:355 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:776 +msgid "FAST" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:217 -msgid "For QR-Code support please install package 'qrencode'!" -msgstr "如需 QR 碼支援,請安裝“qrencode”軟體包!" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:279 +msgid "General Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 -msgid "" -"For further information see online " -"documentation" -msgstr "有關詳細資訊,請檢視線上文件" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:139 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:62 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:127 -msgid "Force CCMP (AES)" -msgstr "強制 CCMP(AES)" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:81 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:140 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:128 -msgid "Force TKIP" -msgstr "強制 TKIP" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:82 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:141 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:64 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:129 -msgid "Force TKIP and CCMP (AES)" -msgstr "強制 TKIP 和 CCMP(AES)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +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 UCI access for luci-app-travelmate" +msgid "Grant access to LuCI app travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:136 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行連線成功最長時間。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:105 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:87 -msgid "Identity" -msgstr "身份" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:375 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:793 +msgid "Identify" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:46 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 msgid "Ignore BSSID" msgstr "忽略 BSSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 -msgid "Input file not found, please check your configuration." -msgstr "找不到輸入檔案,請確認您的設定" +#: 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:712 +msgid "Interface Name" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:135 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:336 msgid "Interface Timeout" msgstr "介面超時" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:24 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:19 msgid "Interface Wizard" msgstr "介面嚮導" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:268 +msgid "Interface Wizard..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "LAN Device" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:247 msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 -msgid "List Auto Expiry" +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:35 +msgid "Log View" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:62 -msgid "Loading" -msgstr "載入中" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:363 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:783 +msgid "MSCHAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:364 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:784 +msgid "MSCHAPV2" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." msgstr "最小訊號質量閾值(百分比),作為(斷開)連線上行的條件。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 -msgid "Move down" -msgstr "下移" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Move up" -msgstr "上移" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:80 -msgid "Name of the used uplink interface." -msgstr "要使用的上行連線介面名稱。" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Net Error Check" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:164 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:156 -msgid "Optional Arguments" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/logread.js:22 +msgid "No travelmate related logs yet!" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 -msgid "" -"Options for further tweaking in case the defaults are not suitable for you." -msgstr "如果預設值不適合您,可以選擇進一步調整。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:275 +msgid "OWE" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:141 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall Timeout" msgstr "總體超時" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:142 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:341 msgid "Overall retry timeout in seconds." msgstr "總體重試超時(秒)。" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:19 msgid "Overview" msgstr "總覽" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:49 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:90 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:135 -msgid "Passphrase" -msgstr "密碼" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:201 +msgid "" +"Overview of all configured uplinks for travelmate.
You can edit, " +"remove or prioritize existing uplinks by drag & drop and scan for new " +"ones. The currently used uplink is emphasized in blue." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:107 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:361 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:781 +msgid "PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:354 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:775 +msgid "PEAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:343 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 msgid "Password" msgstr "密碼" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:808 msgid "Password of Private Key" msgstr "私鑰密碼" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:111 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:95 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:379 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:796 msgid "Path to CA-Certificate" msgstr "CA 證書路徑" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:114 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:384 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:800 msgid "Path to Client-Certificate" msgstr "客戶證書路徑" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:118 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:104 +#: 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:804 msgid "Path to Private Key" msgstr "私鑰路徑" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:258 +msgid "Please install the separate 'qrencode' package." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:282 +msgid "" +"Please note: E-Mail notifications require the separate setup of the " +"mstmp package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "" +"Please note: VPN connections require the separate setup of the " +"Wireguard or OpenVPN package.

 

" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "ProActive Uplink Switch" msgstr "ProActive 上行鏈路切換器" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:70 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已經存在的連線,主動掃描並切換到更高優先順序的上行鏈路。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 -msgid "" -"Provides an overview of all configured uplinks for the travelmate interface " -"(%s). You can edit, remove or re-order/prioritize existing uplinks or scan " -"for new ones. The currently used uplink is emphasized in blue, faulty " -"stations in red." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "無線電選擇/順序" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -msgstr "重新掃描" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +msgid "Receiver address for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:149 -msgid "Restart" -msgstr "重啟" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "重啟 Travelmate" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +"Restrict travelmate to a single radio or change the overall scanning order " +"(e.g. 'radio1 radio0')." msgstr "" -"將 travelmate 限制在單個無線電上(例如“radio1”),或改變整個掃描順序(例" -"如“radio1 radio2 radio0”)。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 msgid "Retry limit to connect to an uplink." msgstr "連線到上行連線的重試限制。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:102 -msgid "Runtime Information" -msgstr "執行資訊" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +msgid "Run Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:41 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:26 -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:248 +#: 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:573 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:39 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:717 msgid "SSID (hidden)" msgstr "SSID(隱藏)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:14 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:11 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:61 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:826 msgid "Save" msgstr "儲存" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 -msgid "Scan" -msgstr "掃描" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:147 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:156 -msgid "Show/Hide QR-Codes" -msgstr "顯示/隱藏 QR 碼" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +msgid "Scan on" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +msgid "Script Arguments" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +msgid "Sender address for travelmate notification E-Mails." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +msgid "Sends notification E-Mails after every succesful uplink connect." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +msgid "Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 msgid "Signal Quality Threshold" msgstr "訊號質量閾值" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:45 -msgid "Signal strength" -msgstr "訊號強度" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:165 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:157 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:116 -msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "站點 ID(RADIO/SSID/BSSID)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +msgid "Starting wireless scan on '" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:122 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +msgid "Station ID" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 msgid "Station Interface" msgstr "站點介面" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:54 -msgid "" -"The BSSID information '%s' is optional and only required for hidden networks" -msgstr "BSSID 資訊“%s”是可選的,僅對隱藏網路必需" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 -msgid "The syslog output, pre-filtered for travelmate related messages only." -msgstr "此表單顯示 syslog 輸出,僅針對 travelmate 相關訊息進行預過濾。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +msgid "Status / Version" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main firewall " -"configuration file (/etc/config/firewall)." -msgstr "此表單允許您修改主防火牆配置檔案(/etc/config/firewall)的內容。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +msgid "Strength" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:352 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:773 +msgid "TLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:353 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:774 +msgid "TTLS" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +msgid "The QR-Code could not be generated!" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +msgid "The firewall zone name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +msgid "The interface metric" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 +msgid "The lan network device, e.g. 'br-lan'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "此表單允許您修改主網路配置檔案(/etc/config/network)的內容。" +"The selected URL will be used for connectivity- and captive portal checks." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +msgid "The selected priority will be used for travelmate processes." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "此表單允許您修改主旅行配置檔案(/etc/config/travelmate)的內容。" +"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 "此表單顯示 syslog 輸出,僅針對 travelmate 相關訊息進行預過濾。" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +msgid "The uplink interface has been updated." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +msgid "The uplink interface name" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 msgid "" -"This form allows you to modify the content of the main wireless " -"configuration file (/etc/config/wireless)." -msgstr "此表單允許您修改主無線配置檔案(/etc/config/wireless)的內容。" +"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/luasrc/model/cbi/travelmate/overview_tab.lua:28 -msgid "This step has only to be done once." -msgstr "此步驟只需執行一次。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +msgid "Topic for travelmate notification E-Mails." +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json:3 msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Travelmate 狀態(質量)" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:110 -msgid "Travelmate Version" -msgstr "Travelmate 版本" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +msgid "Travelmate Settings" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "上" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "上行 / 觸發介面" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +msgid "VPN Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "上行 BSSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +msgid "VPN Interface" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "上行 SSID" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +msgid "VPN Service" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +msgid "VPN Settings" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 +msgid "WPA Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:272 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:757 +msgid "WPA Ent. (TKIP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "檢視 AP QR 碼" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:238 +msgid "WPA Flags" +msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "查看記錄檔" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 +msgid "WPA Pers." +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP-口令" +#: 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:748 +msgid "WPA Pers. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:134 -msgid "WPA Capabilities" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:147 -msgid "WPA-Passphrase" -msgstr "WPA-口令" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:273 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:758 +msgid "WPA/WPA2 Ent. (CCMP)" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:274 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:759 +msgid "WPA/WPA2 Ent. (TKIP)" +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:750 +msgid "WPA/WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:266 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:751 +msgid "WPA/WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:269 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 +msgid "WPA2 Ent. (CCMP)" +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:755 +msgid "WPA2 Ent. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:259 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:744 +msgid "WPA2 Pers." +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:745 +msgid "WPA2 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 +msgid "WPA2 Pers. (TKIP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:753 +msgid "WPA2/WPA3 Ent." +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:743 +msgid "WPA2/WPA3 Pers. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:267 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:752 +msgid "WPA3 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +msgid "WPA3 OWE (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 +msgid "WPA3 Pers." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:742 +msgid "WPA3 Pers. (SAE)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +msgid "WPA3/WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 msgid "Wireless Scan" msgstr "無線掃描" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +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/luasrc/model/cbi/travelmate/overview_tab.lua:27 -msgid "add it to the wan zone of the firewall." -msgstr "將其新增到防火牆的 wan 區域。" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:790 +msgid "auth=MSCHAPV2" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:789 +msgid "auth=PAP" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:276 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +msgid "none" +msgstr "" + +#~ msgid "AP on" +#~ msgstr "AP 開啟" + +#~ msgid "Action" +#~ msgstr "動作" + +#~ msgid "Add Uplink" +#~ msgstr "新增上行連線" + +#~ msgid "Add Wireless Uplink Configuration" +#~ msgstr "新增無線上行連線配置" + +#~ msgid "Advanced" +#~ msgstr "進階" + +#~ msgid "Automatic" +#~ msgstr "自動" + +#~ msgid "Back to overview" +#~ msgstr "返回概述" + +#~ msgid "" +#~ "Check the internet availability, log captive portal redirections and keep " +#~ "the uplink connection 'alive'." +#~ msgstr "" +#~ "檢查網際網路可用性,記錄強制網路門戶重定向,並保持上行連線為“活動”狀態。" + +#~ msgid "Cipher" +#~ msgstr "加密方式" + +#~ msgid "" +#~ "Configuration of the travelmate package to to enable travel router " +#~ "functionality." +#~ msgstr "配置 travelmate 包,以啟用旅行路由器功能。" + +#~ msgid "Create Uplink interface" +#~ msgstr "建立上行連線介面" + +#~ msgid "" +#~ "Create a new wireless wan uplink interface, configure it to use dhcp and" +#~ msgstr "建立一個新的無線 wan 上行介面,將其配置為使用 dhcp 及" + +#~ msgid "Down" +#~ msgstr "下" + +#~ msgid "Edit Firewall Configuration" +#~ msgstr "編輯防火牆配置" + +#~ msgid "Edit Network Configuration" +#~ msgstr "編輯網路配置" + +#~ msgid "Edit Travelmate Configuration" +#~ msgstr "編輯 Travelmate 配置" + +#~ msgid "Edit Wireless Configuration" +#~ msgstr "編輯無線配置" + +#~ msgid "Edit Wireless Uplink Configuration" +#~ msgstr "編輯無線上行連線配置" + +#~ msgid "Edit this Uplink" +#~ msgstr "編輯此上行連線" + +#~ msgid "Enable Travelmate" +#~ msgstr "啟用 travelmate" + +#~ msgid "Enable Verbose Debug Logging" +#~ msgstr "啟用詳細除錯日誌" + +#~ msgid "Extra Options" +#~ msgstr "額外選項" + +#~ msgid "Faulty Stations" +#~ msgstr "不良站點" + +#~ msgid "Find and join network on" +#~ msgstr "查詢並加入網路" + +#~ msgid "For QR-Code support please install package 'qrencode'!" +#~ msgstr "如需 QR 碼支援,請安裝“qrencode”軟體包!" + +#~ msgid "" +#~ "For further information see online " +#~ "documentation" +#~ msgstr "有關詳細資訊,請檢視線上文件" + +#~ msgid "Force CCMP (AES)" +#~ msgstr "強制 CCMP(AES)" + +#~ msgid "Force TKIP" +#~ msgstr "強制 TKIP" + +#~ msgid "Force TKIP and CCMP (AES)" +#~ msgstr "強制 TKIP 和 CCMP(AES)" + +#~ msgid "Identity" +#~ msgstr "身份" + +#~ msgid "Input file not found, please check your configuration." +#~ msgstr "找不到輸入檔案,請確認您的設定" + +#~ msgid "Loading" +#~ msgstr "載入中" + +#~ msgid "Move down" +#~ msgstr "下移" + +#~ msgid "Move up" +#~ msgstr "上移" + +#~ msgid "Name of the used uplink interface." +#~ msgstr "要使用的上行連線介面名稱。" + +#~ msgid "" +#~ "Options for further tweaking in case the defaults are not suitable for " +#~ "you." +#~ msgstr "如果預設值不適合您,可以選擇進一步調整。" + +#~ msgid "Passphrase" +#~ msgstr "密碼" + +#~ msgid "Radio Selection / Order" +#~ msgstr "無線電選擇/順序" + +#~ msgid "Repeat scan" +#~ msgstr "重新掃描" + +#~ msgid "Restart" +#~ msgstr "重啟" + +#~ msgid "Restart Travelmate" +#~ msgstr "重啟 Travelmate" + +#~ msgid "" +#~ "Restrict travelmate to a single radio (e.g. 'radio1') or change the " +#~ "overall scanning order (e.g. 'radio1 radio2 radio0')." +#~ msgstr "" +#~ "將 travelmate 限制在單個無線電上(例如“radio1”),或改變整個掃描順序(例" +#~ "如“radio1 radio2 radio0”)。" + +#~ msgid "Runtime Information" +#~ msgstr "執行資訊" + +#~ msgid "Scan" +#~ msgstr "掃描" + +#~ msgid "Show/Hide QR-Codes" +#~ msgstr "顯示/隱藏 QR 碼" + +#~ msgid "Signal strength" +#~ msgstr "訊號強度" + +#~ msgid "Station ID (RADIO/SSID/BSSID)" +#~ msgstr "站點 ID(RADIO/SSID/BSSID)" + +#~ msgid "" +#~ "The BSSID information '%s' is optional and only required for hidden " +#~ "networks" +#~ msgstr "BSSID 資訊“%s”是可選的,僅對隱藏網路必需" + +#~ msgid "" +#~ "This form allows you to modify the content of the main firewall " +#~ "configuration file (/etc/config/firewall)." +#~ msgstr "此表單允許您修改主防火牆配置檔案(/etc/config/firewall)的內容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main network " +#~ "configuration file (/etc/config/network)." +#~ msgstr "此表單允許您修改主網路配置檔案(/etc/config/network)的內容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main travelmate " +#~ "configuration file (/etc/config/travelmate)." +#~ msgstr "此表單允許您修改主旅行配置檔案(/etc/config/travelmate)的內容。" + +#~ msgid "" +#~ "This form allows you to modify the content of the main wireless " +#~ "configuration file (/etc/config/wireless)." +#~ msgstr "此表單允許您修改主無線配置檔案(/etc/config/wireless)的內容。" + +#~ msgid "This step has only to be done once." +#~ msgstr "此步驟只需執行一次。" + +#~ msgid "Travelmate Status (Quality)" +#~ msgstr "Travelmate 狀態(質量)" + +#~ msgid "Travelmate Version" +#~ msgstr "Travelmate 版本" + +#~ msgid "Up" +#~ msgstr "上" + +#~ msgid "Uplink / Trigger interface" +#~ msgstr "上行 / 觸發介面" + +#~ msgid "Uplink BSSID" +#~ msgstr "上行 BSSID" + +#~ msgid "Uplink SSID" +#~ msgstr "上行 SSID" + +#~ msgid "View AP QR-Codes" +#~ msgstr "檢視 AP QR 碼" + +#~ msgid "View Logfile" +#~ msgstr "查看記錄檔" + +#~ msgid "WEP-Passphrase" +#~ msgstr "WEP-口令" + +#~ msgid "WPA-Passphrase" +#~ msgstr "WPA-口令" + +#~ msgid "add it to the wan zone of the firewall." +#~ msgstr "將其新增到防火牆的 wan 區域。" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "隱藏" +#~ msgid "hidden" +#~ msgstr "隱藏" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:206 -msgid "with SSID" -msgstr "帶 SSID" +#~ msgid "with SSID" +#~ msgstr "帶 SSID" #~ msgid "Delete" #~ msgstr "刪除" diff --git a/applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json b/applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json new file mode 100644 index 0000000000..79a0299425 --- /dev/null +++ b/applications/luci-app-travelmate/root/usr/share/luci/menu.d/luci-app-travelmate.json @@ -0,0 +1,42 @@ +{ + "admin/services/travelmate": { + "title": "Travelmate", + "order": "60", + "action": { + "type": "alias", + "path": "admin/services/travelmate/overview" + }, + "depends": { + "acl": [ "luci-app-travelmate" ], + "fs": { + "/usr/bin/travelmate.sh": "executable", + "/etc/init.d/travelmate": "executable" + }, + "uci": { "travelmate": true } + } + }, + "admin/services/travelmate/overview": { + "title": "Overview", + "order": 10, + "action": { + "type": "view", + "path": "travelmate/overview" + } + }, + "admin/services/travelmate/stations": { + "title": "Wireless Stations", + "order": 20, + "action": { + "type": "view", + "path": "travelmate/stations" + } + }, + "admin/services/travelmate/logread": { + "title": "Log View", + "order": 30, + "action": { + "type": "view", + "path": "travelmate/logread" + } + } +} 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 a66bc8add6..f3861e0fb6 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 @@ -1,11 +1,28 @@ { "luci-app-travelmate": { - "description": "Grant UCI access for luci-app-travelmate", - "read": { - "uci": [ "travelmate" ] - }, + "description": "Grant access to LuCI app travelmate", "write": { + "file": { + "/var/run/travelmate.refresh": [ "write" ] + }, "uci": [ "travelmate" ] + }, + "read": { + "cgi-io": [ "exec" ], + "file": { + "/etc/travelmate/*.login": [ "list" ], + "/var/run/travelmate.pid": [ "read" ], + "/var/run/travelmate.refresh": [ "read" ], + "/tmp/trm_runtime.json": [ "read" ], + "/sbin/logread -e trm-": [ "exec" ], + "/usr/sbin/logread -e trm-": [ "exec" ], + "/etc/init.d/travelmate reload" : [ "exec" ], + "/etc/init.d/travelmate restart" : [ "exec" ], + "/etc/init.d/travelmate setup [0-9a-z_]* [0-9a-z_]* [0-9]*" : [ "exec" ], + "/etc/init.d/travelmate scan radio[0-9]" : [ "exec" ], + "/usr/bin/qrencode --inline --8bit --type=SVG --output=- *" : [ "exec" ] + }, + "uci": [ "travelmate", "wireless" ] } } } -- 2.30.2