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 \'
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "عرض ملف السجل" - -#: 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:290 +msgid "Verbose Debug Logging" 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: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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Reinicia el Travelmate" - -#: 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" -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 +#: 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/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)" +#: 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 +#: 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 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_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 "" -#: 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 "" -#: 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 "" -#: 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 "" -#: 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/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/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 "Versió del 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" +#: 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 "Mostra el fitxer de registre" - -#: 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:290 +msgid "Verbose Debug Logging" 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: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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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" -msgstr "amagat" - -#: 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: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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Odstranit" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" 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:380 +msgid "VPN Hook" 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:389 +msgid "VPN Interface" 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:383 +msgid "VPN Service" 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/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:134 -msgid "WPA Capabilities" +#: 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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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 "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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Entfernen" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "Verzögerung Trigger-Bedingung" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 -msgid "Up" -msgstr "Hoch" - -#: 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:359 +msgid "User Agent" 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:380 +msgid "VPN Hook" 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:389 +msgid "VPN Interface" 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:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Protokolldatei anzeigen" - -#: 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:281 +msgid "VPN Settings" 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:290 +msgid "Verbose Debug Logging" 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: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:38 +#: 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/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" -msgstr "versteckt" - -#: 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: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 "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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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.
" +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 -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 "" -"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 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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/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 "Interfaz de estación" -#: 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 "" -"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/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 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 "" "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/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 "Versión de 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 "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/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/overview.js:380 +msgid "VPN Hook" +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/overview.js:389 +msgid "VPN Interface" +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/overview.js:383 +msgid "VPN Service" +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/overview.js:281 +msgid "VPN Settings" +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/overview.js:290 +msgid "Verbose Debug Logging" +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: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" -msgstr "Capacidades WPA" +#: 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" -msgstr "Frase de contraseña WPA" +#: 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 "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/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "oculto" +#: 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" -msgstr "con 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 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." + +#~ msgid "hidden" +#~ msgstr "oculto" + +#~ 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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Poista" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" 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:380 +msgid "VPN Hook" 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:389 +msgid "VPN Interface" 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:383 +msgid "VPN Service" 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:281 +msgid "VPN Settings" 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:290 +msgid "Verbose Debug Logging" 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: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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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" -msgstr "piilotettu" - -#: 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: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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Désinstaller" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" 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:380 +msgid "VPN Hook" 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:389 +msgid "VPN Interface" 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:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Afficher le fichier de journal" - -#: 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:281 +msgid "VPN Settings" 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:290 +msgid "Verbose Debug Logging" 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: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:38 +#: 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/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" -msgstr "caché" - -#: 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: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 "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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Eltávolítás" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +msgid "User Agent" 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:380 +msgid "VPN Hook" 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:389 +msgid "VPN Interface" 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:383 +msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "Naplófájl megtekintése" - -#: 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:281 +msgid "VPN Settings" 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:290 +msgid "Verbose Debug Logging" 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: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:38 +#: 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/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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Rimuovi" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/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.
" +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/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "削除" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "このアップリンクを削除" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "Travelmate の再起動" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +msgid "Station MAC" 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: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 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/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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "アップリンク / トリガー インターフェース" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "アップリンク BSSID" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "アップリンク SSID" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "AP QR-コードを確認" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "ログファイルの確認" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP パスフレーズ" - -#: 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:359 +msgid "User Agent" 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/overview.js:380 +msgid "VPN Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: 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/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/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" -msgstr ", 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 の場所:" + +#~ 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 ゾーンに追加します。" + +#~ msgid "hidden" +#~ msgstr "(ステルス)" + +#~ 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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "액션" + +#~ 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/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.
" +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 -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 "" -"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 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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 -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 "" -"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: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 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/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 "Wersja 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 "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/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:380 +msgid "VPN Hook" +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/overview.js:389 +msgid "VPN Interface" +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/overview.js:383 +msgid "VPN Service" +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:281 +msgid "VPN Settings" +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/overview.js:290 +msgid "Verbose Debug Logging" +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: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" -msgstr "Możliwości WPA" +#: 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" -msgstr "Hasło WPA" +#: 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 "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/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "ukryty" +#: 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" -msgstr "z 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 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." + +#~ msgid "hidden" +#~ msgstr "ukryty" + +#~ 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/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.
" +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 -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 "" -"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 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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/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 "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 +#: 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 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/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/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)." -msgstr "Este formulário permite a modificação das configurações de rede." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -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." - -#: 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:56 +msgid "The uplink interface has been updated." 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:26 +msgid "The uplink interface name" +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/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/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/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 "Versão do 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 "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/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/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/overview.js:281 +msgid "VPN Settings" +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/overview.js:290 +msgid "Verbose Debug Logging" +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: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" -msgstr "Capacidades WPA" +#: 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" -msgstr "Palavra-passe WPA" +#: 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 "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/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "escondido" +#: 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" -msgstr "com 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 "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." + +#~ msgid "hidden" +#~ msgstr "escondido" + +#~ 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.
" +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 -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 "" -"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 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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/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 "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 +#: 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 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/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/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)." -msgstr "Este formulário permite a modificação das configurações de rede." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -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." - -#: 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:56 +msgid "The uplink interface has been updated." 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:26 +msgid "The uplink interface name" +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/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/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/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 "Versão do 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 "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/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/overview.js:281 +msgid "VPN Settings" +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/overview.js:290 +msgid "Verbose Debug Logging" +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/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" -msgstr "Recursos do WPA" +#: 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" -msgstr "WPA 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/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 "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/luasrc/view/travelmate/wifi_scan.htm:51 -msgid "hidden" -msgstr "oculto" +#: 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" -msgstr "com 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 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." + +#~ msgid "hidden" +#~ msgstr "oculto" + +#~ 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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/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 "Vezi fișierul log" - -#: 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:290 +msgid "Verbose Debug Logging" 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: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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" +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/stations.js:671 +msgid "Add Uplink..." +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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Удалить" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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" +#: 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 +#: 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 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 +#: 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 firewall " -"configuration file (/etc/config/firewall)." -msgstr "" -"Страница настройки межсетевого экрана, изменение содержимого config файла " -"firewall настройки межсетевого экрана (/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)." -msgstr "" -"Страница настройки сети, изменение содержимого config файла network " -"настройки сети (/etc/config/network)." - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -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)." - -#: 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)." -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." +"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/controller/travelmate.lua:18 -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +#: 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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "Включить интерфейс
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Odstrániť" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Ta bort" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" +#: 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:134 -msgid "WPA Capabilities" +#: 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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "" 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/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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +msgid "-- AP Selection --" 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/overview.js:261 +msgid "AP QR-Codes..." 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/stations.js:815 +msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "Видалити" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "Переглянути файл звіту" - -#: 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:290 +msgid "Verbose Debug Logging" 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: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:147 -msgid "WPA-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/wifi_scan.htm:38 +#: 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/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" -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: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 "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/luasrc/model/cbi/travelmate/overview_tab.lua:74 -msgid "Add Open Uplinks" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +msgid "AP QR-Codes..." 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:815 +msgid "Add Uplink %q" 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/stations.js:671 +msgid "Add Uplink..." 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:280 +msgid "Additional Settings" +msgstr "" + +#: 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/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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -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 +#: 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/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)" +#: 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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." +"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/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:417 +msgid "Topic for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "" - -#: 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)." -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/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)" +#: 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 "" - -#: 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 "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/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 "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/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.
" +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/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" -msgstr "移除" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "删除此上行链路" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "重启 Travelmate" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:108 -msgid "" -"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " -"scanning order (e.g. 'radio1 radio2 radio0')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +msgid "QR-Code Overview" 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: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 "" +"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 or change the overall scanning order " +"(e.g. 'radio1 radio0')." +msgstr "" + +#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." -msgstr "此表单允许您修改主防火墙配置文件(/etc/config/firewall)的内容。" +"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/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "此表单允许您修改主网络配置文件(/etc/config/network)的内容。" +#: 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/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "此表单允许您修改主旅行配置文件(/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)." -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 "旅行伴侣" -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:104 -msgid "Travelmate Status (Quality)" -msgstr "Travelmate 状态(质量)" +#: 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/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/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "查看热点二维码" +#: 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" -msgstr "WEP-口令" +#: 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" -msgstr "WPA功能" +#: 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" -msgstr "WPA-口令" +#: 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." -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/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" -msgstr "带 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 开启" + +#~ 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 区域。" + +#~ msgid "hidden" +#~ msgstr "隐藏" + +#~ 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/luasrc/view/travelmate/stations.htm:113 -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:46 -msgid "Action" -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/overview.js:73 +msgid "-- AP Selection --" 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/overview.js:261 +msgid "AP QR-Codes..." +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/stations.js:815 +msgid "Add Uplink %q" +msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:671 +msgid "Add Uplink..." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +msgid "Additional Settings" +msgstr "" + +#: 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.
" +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 +#: 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." +"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/model/cbi/travelmate/overview_tab.lua:107 -msgid "Radio Selection / Order" -msgstr "無線電選擇/順序" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +msgid "Repeat Scan" msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 -msgid "Remove this Uplink" -msgstr "" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:90 -msgid "Repeat scan" -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/luasrc/view/travelmate/runtime.htm:147 -msgid "Restart Travelmate" -msgstr "重啟 Travelmate" - -#: 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/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: 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/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 +#: 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 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_firewall_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 firewall " -"configuration file (/etc/config/firewall)." -msgstr "此表單允許您修改主防火牆配置檔案(/etc/config/firewall)的內容。" +"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/cfg_network_tab.lua:19 -msgid "" -"This form allows you to modify the content of the main network configuration " -"file (/etc/config/network)." -msgstr "此表單允許您修改主網路配置檔案(/etc/config/network)的內容。" +#: 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/configuration_tab.lua:21 -msgid "" -"This form allows you to modify the content of the main travelmate " -"configuration file (/etc/config/travelmate)." -msgstr "此表單允許您修改主旅行配置檔案(/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)." -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/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/luasrc/model/cbi/travelmate/overview_tab.lua:79 -msgid "Uplink / Trigger interface" -msgstr "上行 / 觸發介面" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 -msgid "Uplink BSSID" -msgstr "上行 BSSID" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:42 -msgid "Uplink SSID" -msgstr "上行 SSID" - -#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:154 -msgid "View AP QR-Codes" -msgstr "檢視 AP QR 碼" - -#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 -msgid "View Logfile" -msgstr "查看記錄檔" - -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:67 -msgid "WEP-Passphrase" -msgstr "WEP-口令" - -#: 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:359 +msgid "User Agent" 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/overview.js:380 +msgid "VPN Hook" +msgstr "" -#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:38 +#: 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/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/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" -msgstr "帶 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 開啟" + +#~ 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 區域。" + +#~ msgid "hidden" +#~ msgstr "隱藏" + +#~ 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": { + "description": "Grant access to LuCI app travelmate", + "write": { + "file": { + "/var/run/travelmate.refresh": [ "write" ] + }, "uci": [ "travelmate" ] }, - "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" ] } } }